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

Unified Diff: content/renderer/renderer_webkitplatformsupport_impl.h

Issue 286793002: [DeviceLight] Add renderer+common parts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix jochen's comments Created 6 years, 6 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: content/renderer/renderer_webkitplatformsupport_impl.h
diff --git a/content/renderer/renderer_webkitplatformsupport_impl.h b/content/renderer/renderer_webkitplatformsupport_impl.h
index 7e36823ae38c14dcf03bf4871246a7612ec5df13..15b8c5ceea0ebf7cfad4339605e9475098a739d3 100644
--- a/content/renderer/renderer_webkitplatformsupport_impl.h
+++ b/content/renderer/renderer_webkitplatformsupport_impl.h
@@ -37,6 +37,7 @@ class WebScreenOrientationListener;
namespace content {
class BatteryStatusDispatcher;
+class DeviceLightEventPump;
class DeviceMotionEventPump;
class DeviceOrientationEventPump;
class QuotaMessageFilter;
@@ -137,6 +138,7 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
virtual blink::WebCompositorSupport* compositorSupport();
virtual blink::WebString convertIDNToUnicode(
const blink::WebString& host, const blink::WebString& languages);
+ virtual void setDeviceLightListener(blink::WebDeviceLightListener* listener);
virtual void setDeviceMotionListener(
blink::WebDeviceMotionListener* listener);
virtual void setDeviceOrientationListener(
@@ -175,6 +177,8 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
// a listener has been set via setGamepadListener.
static void MockGamepadDisconnected(int index, const blink::WebGamepad& pad);
+ // Set a double to return when setDeviceLightListener is invoked.
+ static void SetMockDeviceLightDataForTesting(double data);
// Set WebDeviceMotionData to return when setDeviceMotionListener is invoked.
static void SetMockDeviceMotionDataForTesting(
const blink::WebDeviceMotionData& data);
@@ -228,6 +232,7 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
WebPublicSuffixListImpl public_suffix_list_;
+ scoped_ptr<DeviceLightEventPump> device_light_event_pump_;
scoped_ptr<DeviceMotionEventPump> device_motion_event_pump_;
scoped_ptr<DeviceOrientationEventPump> device_orientation_event_pump_;

Powered by Google App Engine
This is Rietveld 408576698