Bug 1850713: remove duplicated setting of early hint preloader id in `ScriptLoader...
[gecko.git] / dom / base / PlacesBookmark.h
blobf814f191802a4c84b568d32dc8a9d2832ea67155
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_PlacesBookmark_h
8 #define mozilla_dom_PlacesBookmark_h
10 #include "mozilla/dom/PlacesEvent.h"
12 namespace mozilla {
13 namespace dom {
15 class PlacesBookmark : public PlacesEvent {
16 public:
17 explicit PlacesBookmark(PlacesEventType aEventType)
18 : PlacesEvent(aEventType) {}
20 JSObject* WrapObject(JSContext* aCx,
21 JS::Handle<JSObject*> aGivenProto) override {
22 return PlacesBookmark_Binding::Wrap(aCx, this, aGivenProto);
25 const PlacesBookmark* AsPlacesBookmark() const override { return this; }
27 unsigned short ItemType() { return mItemType; }
28 int64_t Id() { return mId; }
29 int64_t ParentId() { return mParentId; }
30 void GetUrl(nsString& aUrl) { aUrl = mUrl; }
31 void GetGuid(nsCString& aGuid) { aGuid = mGuid; }
32 void GetParentGuid(nsCString& aParentGuid) { aParentGuid = mParentGuid; }
33 uint16_t Source() { return mSource; }
34 bool IsTagging() { return mIsTagging; }
36 unsigned short mItemType;
37 int64_t mId;
38 int64_t mParentId;
39 nsString mUrl;
40 nsCString mGuid;
41 nsCString mParentGuid;
42 uint16_t mSource;
43 bool mIsTagging;
45 protected:
46 virtual ~PlacesBookmark() = default;
49 } // namespace dom
50 } // namespace mozilla
52 #endif // mozilla_dom_PlacesBookmark_h