PlacesHistoryCleared.h (1265B)
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/. */ 6 7 #ifndef mozilla_dom_PlacesHistoryCleared_h 8 #define mozilla_dom_PlacesHistoryCleared_h 9 10 #include "mozilla/dom/PlacesEvent.h" 11 12 namespace mozilla { 13 namespace dom { 14 15 class PlacesHistoryCleared final : public PlacesEvent { 16 public: 17 explicit PlacesHistoryCleared() 18 : PlacesEvent(PlacesEventType::History_cleared) {} 19 20 static already_AddRefed<PlacesHistoryCleared> Constructor( 21 const GlobalObject& aGlobal) { 22 RefPtr<PlacesHistoryCleared> event = new PlacesHistoryCleared(); 23 return event.forget(); 24 } 25 26 JSObject* WrapObject(JSContext* aCx, 27 JS::Handle<JSObject*> aGivenProto) override { 28 return PlacesHistoryCleared_Binding::Wrap(aCx, this, aGivenProto); 29 } 30 31 const PlacesHistoryCleared* AsPlacesHistoryCleared() const override { 32 return this; 33 } 34 35 private: 36 ~PlacesHistoryCleared() = default; 37 }; 38 39 } // namespace dom 40 } // namespace mozilla 41 42 #endif // mozilla_dom_PlacesHistoryCleared_h