OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ | 5 #ifndef CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ |
6 #define CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ | 6 #define CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ |
7 | 7 |
8 #include "content/common/wake_lock_service.mojom.h" | 8 #include "content/common/wake_lock_service.mojom.h" |
9 #include "content/public/renderer/render_frame_observer.h" | 9 #include "content/public/renderer/render_frame_observer.h" |
10 #include "third_party/WebKit/public/platform/modules/wake_lock/WebWakeLockClient
.h" | 10 #include "third_party/WebKit/public/platform/modules/wake_lock/WebWakeLockClient
.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 | 13 |
14 // WakeLockDispatcher sends wake lock messages to the browser process using the | 14 // WakeLockDispatcher sends wake lock messages to the browser process using the |
15 // Mojo WakeLockService. | 15 // Mojo WakeLockService. |
16 class WakeLockDispatcher : public RenderFrameObserver, | 16 class WakeLockDispatcher : public RenderFrameObserver, |
17 public blink::WebWakeLockClient { | 17 public blink::WebWakeLockClient { |
18 public: | 18 public: |
19 explicit WakeLockDispatcher(RenderFrame* render_frame); | 19 explicit WakeLockDispatcher(RenderFrame* render_frame); |
20 ~WakeLockDispatcher() override; | 20 ~WakeLockDispatcher() override; |
21 | 21 |
22 private: | 22 private: |
23 // WebWakeLockClient implementation. | 23 // WebWakeLockClient implementation. |
24 virtual void requestKeepScreenAwake(bool keepScreenAwake); | 24 void requestKeepScreenAwake(bool keepScreenAwake) override; |
25 | 25 |
26 WakeLockServicePtr wake_lock_service_; | 26 WakeLockServicePtr wake_lock_service_; |
27 }; | 27 }; |
28 | 28 |
29 } // namespace content | 29 } // namespace content |
30 | 30 |
31 #endif // CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ | 31 #endif // CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_ |
OLD | NEW |