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_power_WakeLock_h
8 #define mozilla_dom_power_WakeLock_h
11 #include "nsIDOMEventListener.h"
12 #include "nsIObserver.h"
13 #include "nsIWakeLock.h"
15 #include "nsWeakReference.h"
16 #include "nsWrapperCache.h"
18 class nsPIDOMWindowInner
;
26 class WakeLock final
: public nsIDOMEventListener
,
28 public nsSupportsWeakReference
,
31 NS_DECL_NSIDOMEVENTLISTENER
37 // Note: WakeLock lives for the lifetime of the document in order to avoid
38 // exposing GC behavior to pages. This means that
39 // |var foo = navigator.requestWakeLock('cpu'); foo = null;|
40 // doesn't unlock the 'cpu' resource.
44 // Initialize this wake lock on behalf of the given window. Null windows are
45 // allowed; a lock without an associated window is always considered
47 nsresult
Init(const nsAString
& aTopic
, nsPIDOMWindowInner
* aWindow
);
51 nsPIDOMWindowInner
* GetParentObject() const;
53 void GetTopic(nsAString
& aTopic
);
55 void Unlock(ErrorResult
& aRv
);
62 void AttachEventListener();
63 void DetachEventListener();
65 // Return true if all parts of the given document are regarded as invisible.
66 bool IsDocumentInvisible(const Document
& aDocument
) const;
71 // The ID of the ContentParent on behalf of whom we acquired this lock, or
72 // CONTENT_PROCESS_UNKNOWN_ID if this lock was acquired on behalf of the
74 uint64_t mContentParentID
;
77 // window that this was created for. Weak reference.
82 } // namespace mozilla
84 #endif // mozilla_dom_power_WakeLock_h