summaryrefslogtreecommitdiffstats
path: root/dom/base/PlacesVisit.h
blob: 4b3f99218bc7d756ad8785e84513d6878fa1adf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef mozilla_dom_PlacesVisit_h
#define mozilla_dom_PlacesVisit_h

#include "mozilla/dom/PlacesEvent.h"

namespace mozilla {
namespace dom {

class PlacesVisit final : public PlacesEvent {
 public:
  explicit PlacesVisit() : PlacesEvent(PlacesEventType::Page_visited) {}

  static already_AddRefed<PlacesVisit> Constructor(const GlobalObject& aGlobal,
                                                   ErrorResult& aRv) {
    RefPtr<PlacesVisit> event = new PlacesVisit();
    return event.forget();
  }

  JSObject* WrapObject(JSContext* aCx,
                       JS::Handle<JSObject*> aGivenProto) override {
    return PlacesVisit_Binding::Wrap(aCx, this, aGivenProto);
  }

  const PlacesVisit* AsPlacesVisit() const override { return this; }

  void GetUrl(nsString& aUrl) { aUrl = mUrl; }
  uint64_t VisitId() { return mVisitId; }
  uint64_t VisitTime() { return mVisitTime; }
  uint64_t ReferringVisitId() { return mReferringVisitId; }
  uint64_t TransitionType() { return mTransitionType; }
  void GetPageGuid(nsTString<char>& aPageGuid) { aPageGuid = mPageGuid; }
  bool Hidden() { return mHidden; }
  uint32_t VisitCount() { return mVisitCount; }
  uint32_t TypedCount() { return mTypedCount; }
  void GetLastKnownTitle(nsString& aLastKnownTitle) {
    aLastKnownTitle = mLastKnownTitle;
  }

  // It's convenient for these to be directly available in C++, so just expose
  // them. These are generally passed around with const qualifiers anyway, so
  // it shouldn't be a problem.
  nsString mUrl;
  uint64_t mVisitId;
  uint64_t mVisitTime;
  uint64_t mReferringVisitId;
  uint32_t mTransitionType;
  nsCString mPageGuid;
  bool mHidden;
  uint32_t mVisitCount;
  uint32_t mTypedCount;
  nsString mLastKnownTitle;

 private:
  ~PlacesVisit() = default;
};

}  // namespace dom
}  // namespace mozilla

#endif  // mozilla_dom_PlacesVisit_h