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

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

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.cpp
diff --git a/Source/core/dom/WakeLockController.cpp b/Source/core/dom/WakeLockController.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..695cfe2664fff2bf66359883201c758fc51f26b3
--- /dev/null
+++ b/Source/core/dom/WakeLockController.cpp
@@ -0,0 +1,48 @@
+// 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.
+
+#include "config.h"
+#include "core/dom/WakeLockController.h"
+
+#include "public/platform/WebWakeLockClient.h"
+
+namespace blink {
+
+WakeLockController::WakeLockController(LocalFrame& frame, WebWakeLockClient* client)
+ : m_client(client)
+{
+}
+
+// static
+PassOwnPtrWillBeRawPtr<WakeLockController> WakeLockController::create(LocalFrame& frame, WebWakeLockClient* client)
+{
+ return adoptPtrWillBeNoop(new WakeLockController(frame, client));
+}
+
+// static
+const char* WakeLockController::supplementName()
+{
+ return "WakeLockController";
+}
+
+// static
+WakeLockController* WakeLockController::from(LocalFrame* frame)
+{
+ return static_cast<WakeLockController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName()));
+}
+
+// static
+void WakeLockController::provideTo(LocalFrame& frame, WebWakeLockClient* client)
+{
+ WillBeHeapSupplement<LocalFrame>::provideTo(frame, WakeLockController::supplementName(), WakeLockController::create(frame, client));
+}
+
+void WakeLockController::requestKeepScreenAwake(bool keepScreenAwake)
+{
+ if (m_client) {
+ m_client->requestKeepScreenAwake(keepScreenAwake);
+ }
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698