summaryrefslogtreecommitdiffstats
path: root/dom/power/WakeLockJS.h
diff options
context:
space:
mode:
Diffstat (limited to 'dom/power/WakeLockJS.h')
-rw-r--r--dom/power/WakeLockJS.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/dom/power/WakeLockJS.h b/dom/power/WakeLockJS.h
index c6858fdd22..43b11a6dc9 100644
--- a/dom/power/WakeLockJS.h
+++ b/dom/power/WakeLockJS.h
@@ -39,20 +39,15 @@ namespace mozilla::dom {
*
* https://www.w3.org/TR/screen-wake-lock/#the-wakelock-interface
*/
-class WakeLockJS final : public nsIDOMEventListener,
+class WakeLockJS final : public nsIObserver,
public nsWrapperCache,
public hal::BatteryObserver,
- public nsIDocumentActivity,
- public nsIObserver,
public nsSupportsWeakReference {
public:
- NS_DECL_NSIDOMEVENTLISTENER
- NS_DECL_NSIDOCUMENTACTIVITY
NS_DECL_NSIOBSERVER
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
- NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS_AMBIGUOUS(WakeLockJS,
- nsIDOMEventListener)
+ NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS_AMBIGUOUS(WakeLockJS, nsIObserver)
public:
explicit WakeLockJS(nsPIDOMWindowInner* aWindow);
@@ -89,7 +84,7 @@ class WakeLockJS final : public nsIDOMEventListener,
void DetachListeners();
Result<already_AddRefed<WakeLockSentinel>, RequestError> Obtain(
- WakeLockType aType);
+ WakeLockType aType, Document* aDoc);
RefPtr<nsPIDOMWindowInner> mWindow;
};