Bug 1835710 - Cancel off-thread JIT compilation before changing nursery allocation...
[gecko.git] / dom / base / PlacesHistoryCleared.h
blob1068fb7659eeb3fd7ece2b5e7ca36449cd8b8f8b
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_PlacesHistoryCleared_h
8 #define mozilla_dom_PlacesHistoryCleared_h
10 #include "mozilla/dom/PlacesEvent.h"
12 namespace mozilla {
13 namespace dom {
15 class PlacesHistoryCleared final : public PlacesEvent {
16 public:
17 explicit PlacesHistoryCleared()
18 : PlacesEvent(PlacesEventType::History_cleared) {}
20 static already_AddRefed<PlacesHistoryCleared> Constructor(
21 const GlobalObject& aGlobal) {
22 RefPtr<PlacesHistoryCleared> event = new PlacesHistoryCleared();
23 return event.forget();
26 JSObject* WrapObject(JSContext* aCx,
27 JS::Handle<JSObject*> aGivenProto) override {
28 return PlacesHistoryCleared_Binding::Wrap(aCx, this, aGivenProto);
31 const PlacesHistoryCleared* AsPlacesHistoryCleared() const override {
32 return this;
35 private:
36 ~PlacesHistoryCleared() = default;
39 } // namespace dom
40 } // namespace mozilla
42 #endif // mozilla_dom_PlacesHistoryCleared_h