Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(802)

Unified Diff: Source/core/dom/WakeLockController.h

Issue 1084923002: Wake Lock API implementation (Blink part) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/WakeLockController.h
diff --git a/Source/core/dom/WakeLockController.h b/Source/core/dom/WakeLockController.h
new file mode 100644
index 0000000000000000000000000000000000000000..f9cf01061b3417eeca495427addab1161dda9d11
--- /dev/null
+++ b/Source/core/dom/WakeLockController.h
@@ -0,0 +1,36 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WakeLockController_h
+#define WakeLockController_h
+
+#include "core/frame/LocalFrame.h"
+
+namespace blink {
+
+class WebWakeLockClient;
+
+class WakeLockController final
+ : public NoBaseWillBeGarbageCollected<WakeLockController>
+ , public WillBeHeapSupplement<LocalFrame> {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WakeLockController);
+ WTF_MAKE_NONCOPYABLE(WakeLockController);
+public:
+ static PassOwnPtrWillBeRawPtr<WakeLockController> create(LocalFrame&, WebWakeLockClient*);
+
+ void requestKeepScreenAwake(bool);
+
+ static const char* supplementName();
+ static WakeLockController* from(LocalFrame*);
+ static void provideTo(LocalFrame&, WebWakeLockClient*);
+
+private:
+ WakeLockController(LocalFrame&, WebWakeLockClient*);
+
+ WebWakeLockClient* m_client;
+};
+
+} // namespace blink
+
+#endif // WakeLockController

Powered by Google App Engine
This is Rietveld 408576698