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

Side by Side Diff: content/renderer/wake_lock/wake_lock_dispatcher.h

Issue 1794553002: [Playground] Onion Soup: moving ScreenWakeLock to Blink modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit DEPS Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_
6 #define CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_
7
8 #include "content/common/wake_lock_service.mojom.h"
9 #include "content/public/renderer/render_frame_observer.h"
10 #include "third_party/WebKit/public/platform/modules/wake_lock/WebWakeLockClient .h"
11
12 namespace content {
13
14 // WakeLockDispatcher sends wake lock messages to the browser process using the
15 // Mojo WakeLockService.
16 class WakeLockDispatcher : public RenderFrameObserver,
17 public blink::WebWakeLockClient {
18 public:
19 explicit WakeLockDispatcher(RenderFrame* render_frame);
20 ~WakeLockDispatcher() override;
21
22 private:
23 // WebWakeLockClient implementation.
24 void requestKeepScreenAwake(bool keepScreenAwake) override;
25
26 mojom::WakeLockServicePtr wake_lock_service_;
27 };
28
29 } // namespace content
30
31 #endif // CONTENT_RENDERER_WAKE_LOCK_WAKE_LOCK_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/wake_lock/wake_lock_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698