| Index: content/renderer/renderer_blink_platform_impl.h
|
| diff --git a/content/renderer/renderer_blink_platform_impl.h b/content/renderer/renderer_blink_platform_impl.h
|
| index f99e89a75c38256f394d6083a1369b0f39188532..b6cff560834dc018b94a2a6c48f5a8a2c0040654 100644
|
| --- a/content/renderer/renderer_blink_platform_impl.h
|
| +++ b/content/renderer/renderer_blink_platform_impl.h
|
| @@ -39,8 +39,6 @@ class RendererScheduler;
|
| class WebThreadImplForRendererScheduler;
|
| }
|
| class WebCanvasCaptureHandler;
|
| -class WebDeviceMotionData;
|
| -class WebDeviceOrientationData;
|
| class WebGraphicsContext3DProvider;
|
| class WebMediaPlayer;
|
| class WebMediaRecorderHandler;
|
| @@ -49,6 +47,11 @@ class WebSecurityOrigin;
|
| class WebServiceWorkerCacheStorage;
|
| }
|
|
|
| +namespace device {
|
| +class MotionData;
|
| +class OrientationData;
|
| +}
|
| +
|
| namespace service_manager {
|
| class InterfaceProvider;
|
| }
|
| @@ -230,13 +233,12 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
|
|
|
| // 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);
|
| - // Set WebDeviceOrientationData to return when setDeviceOrientationListener
|
| + // Set MotionData to return when setDeviceMotionListener is invoked.
|
| + static void SetMockDeviceMotionDataForTesting(const device::MotionData& data);
|
| + // Set OrientationData to return when setDeviceOrientationListener
|
| // is invoked.
|
| static void SetMockDeviceOrientationDataForTesting(
|
| - const blink::WebDeviceOrientationData& data);
|
| + const device::OrientationData& data);
|
|
|
| WebDatabaseObserverImpl* web_database_observer_impl() {
|
| return web_database_observer_impl_.get();
|
|
|