| Index: third_party/WebKit/public/platform/modules/device_orientation/WebDeviceMotionListener.h
|
| diff --git a/third_party/WebKit/public/platform/modules/device_orientation/WebDeviceMotionListener.h b/third_party/WebKit/public/platform/modules/device_orientation/WebDeviceMotionListener.h
|
| index f64887b5c403e004c2ceccb6a860fc52bb53f546..849a286bcca69ba8e6d2dac244e9049585821f77 100644
|
| --- a/third_party/WebKit/public/platform/modules/device_orientation/WebDeviceMotionListener.h
|
| +++ b/third_party/WebKit/public/platform/modules/device_orientation/WebDeviceMotionListener.h
|
| @@ -32,17 +32,14 @@
|
| #define WebDeviceMotionListener_h
|
|
|
| #include "public/platform/WebPlatformEventListener.h"
|
| -
|
| -namespace device {
|
| -class MotionData;
|
| -}
|
| +#include "public/platform/modules/device_orientation/WebDeviceMotionData.h"
|
|
|
| namespace blink {
|
|
|
| class WebDeviceMotionListener : public WebPlatformEventListener {
|
| public:
|
| // This method is called every time new device motion data is available.
|
| - virtual void DidChangeDeviceMotion(const device::MotionData&) = 0;
|
| + virtual void DidChangeDeviceMotion(const blink::WebDeviceMotionData&) = 0;
|
|
|
| virtual ~WebDeviceMotionListener() {}
|
| };
|
|
|