| Index: components/test_runner/web_test_delegate.h
|
| diff --git a/components/test_runner/web_test_delegate.h b/components/test_runner/web_test_delegate.h
|
| index fe05b2f98b948232aab215efab7893d49baf5ac7..6dabc11f50d2b332f0315b7202efd82559207167 100644
|
| --- a/components/test_runner/web_test_delegate.h
|
| +++ b/components/test_runner/web_test_delegate.h
|
| @@ -24,8 +24,6 @@ class DictionaryValue;
|
| }
|
|
|
| namespace blink {
|
| -class WebDeviceMotionData;
|
| -class WebDeviceOrientationData;
|
| class WebLocalFrame;
|
| class WebGamepad;
|
| class WebGamepads;
|
| @@ -50,6 +48,11 @@ class TextureLayerClient;
|
| class SharedBitmapManager;
|
| }
|
|
|
| +namespace device {
|
| +class MotionData;
|
| +class OrientationData;
|
| +}
|
| +
|
| namespace test_runner {
|
|
|
| class DeviceLightData;
|
| @@ -74,11 +77,11 @@ class WebTestDelegate {
|
| virtual void SetDeviceLightData(const double data) = 0;
|
| // Set data to return when registering via
|
| // Platform::setDeviceMotionListener().
|
| - virtual void SetDeviceMotionData(const blink::WebDeviceMotionData& data) = 0;
|
| + virtual void SetDeviceMotionData(const device::MotionData& data) = 0;
|
| // Set data to return when registering via
|
| // Platform::setDeviceOrientationListener().
|
| virtual void SetDeviceOrientationData(
|
| - const blink::WebDeviceOrientationData& data) = 0;
|
| + const device::OrientationData& data) = 0;
|
|
|
| // Add a message to the text dump for the layout test.
|
| virtual void PrintMessage(const std::string& message) = 0;
|
|
|