Index: content/renderer/render_frame_impl.h |
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h |
index cdeba40c86a8054de3aef1cb5afe6164cba72bc4..bcb49816cf2b21cc6ef191497e527d4b808cdf26 100644 |
--- a/content/renderer/render_frame_impl.h |
+++ b/content/renderer/render_frame_impl.h |
@@ -60,6 +60,7 @@ class WebMediaPlayer; |
class WebPresentationClient; |
class WebPushClient; |
class WebSecurityOrigin; |
+class WebWakeLockClient; |
struct WebCompositionUnderline; |
struct WebContextMenuData; |
struct WebCursorInfo; |
@@ -111,6 +112,7 @@ class RenderWidget; |
class RenderWidgetFullscreenPepper; |
class ScreenOrientationDispatcher; |
class UserMediaClientImpl; |
+class WakeLockDispatcher; |
struct CommonNavigationParams; |
struct CustomContextMenuContext; |
struct FrameReplicationState; |
@@ -502,6 +504,7 @@ class CONTENT_EXPORT RenderFrameImpl |
unsigned long long requested_size, |
blink::WebStorageQuotaCallbacks callbacks); |
virtual void willOpenWebSocket(blink::WebSocketHandle* handle); |
+ virtual blink::WebWakeLockClient* wakeLockClient(); |
virtual blink::WebGeolocationClient* geolocationClient(); |
virtual blink::WebPushClient* pushClient(); |
virtual blink::WebPresentationClient* presentationClient(); |
@@ -973,6 +976,8 @@ class CONTENT_EXPORT RenderFrameImpl |
// local roots. |
DevToolsAgent* devtools_agent_; |
+ WakeLockDispatcher* wakelock_dispatcher_; |
+ |
// The geolocation dispatcher attached to this frame, lazily initialized. |
GeolocationDispatcher* geolocation_dispatcher_; |