2018-02-14 20:06:15 +03:00
|
|
|
/* -*- 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_PlacesEvent_h
|
|
|
|
#define mozilla_dom_PlacesEvent_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/PlacesEventBinding.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
2020-11-23 19:12:02 +03:00
|
|
|
class ErrorResult;
|
|
|
|
|
2018-02-14 20:06:15 +03:00
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class PlacesEvent : public nsWrapperCache {
|
|
|
|
public:
|
|
|
|
explicit PlacesEvent(PlacesEventType aType) : mType(aType) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-02-14 20:06:15 +03:00
|
|
|
static already_AddRefed<PlacesEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
PlacesEventType aType,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(PlacesEvent)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(PlacesEvent)
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() const;
|
|
|
|
|
|
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
|
|
|
|
PlacesEventType Type() const { return mType; }
|
|
|
|
|
|
|
|
virtual const PlacesVisit* AsPlacesVisit() const { return nullptr; }
|
2018-10-09 17:47:27 +03:00
|
|
|
virtual const PlacesBookmark* AsPlacesBookmark() const { return nullptr; }
|
|
|
|
virtual const PlacesBookmarkAddition* AsPlacesBookmarkAddition() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-01-16 21:38:54 +03:00
|
|
|
virtual const PlacesBookmarkRemoved* AsPlacesBookmarkRemoved() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-05-06 07:24:34 +03:00
|
|
|
virtual const PlacesBookmarkMoved* AsPlacesBookmarkMoved() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-10-05 03:53:46 +03:00
|
|
|
virtual const PlacesBookmarkGuid* AsPlacesBookmarkGuid() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2023-02-10 00:21:50 +03:00
|
|
|
virtual const PlacesBookmarkKeyword* AsPlacesBookmarkKeyword() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-10-18 07:43:44 +03:00
|
|
|
virtual const PlacesBookmarkTags* AsPlacesBookmarkTags() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-10-08 01:10:20 +03:00
|
|
|
virtual const PlacesBookmarkTime* AsPlacesBookmarkTime() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-10-01 15:01:29 +03:00
|
|
|
virtual const PlacesBookmarkTitle* AsPlacesBookmarkTitle() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-10-05 03:53:44 +03:00
|
|
|
virtual const PlacesBookmarkUrl* AsPlacesBookmarkUrl() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-11-23 19:23:46 +03:00
|
|
|
virtual const PlacesFavicon* AsPlacesFavicon() const { return nullptr; }
|
2020-12-18 13:47:34 +03:00
|
|
|
virtual const PlacesVisitTitle* AsPlacesVisitTitle() const { return nullptr; }
|
2020-12-23 11:15:50 +03:00
|
|
|
virtual const PlacesHistoryCleared* AsPlacesHistoryCleared() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-01-21 18:51:02 +03:00
|
|
|
virtual const PlacesRanking* AsPlacesRanking() const { return nullptr; }
|
2021-02-15 11:04:14 +03:00
|
|
|
virtual const PlacesVisitRemoved* AsPlacesVisitRemoved() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-02-25 04:58:23 +03:00
|
|
|
virtual const PlacesPurgeCaches* AsPlacesPurgeCaches() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-02-14 20:06:15 +03:00
|
|
|
protected:
|
|
|
|
virtual ~PlacesEvent() = default;
|
|
|
|
PlacesEventType mType;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_PlacesEvent_h
|