| Index: Source/modules/device_orientation/DeviceOrientationDispatcher.h
|
| diff --git a/Source/modules/device_orientation/DeviceOrientationDispatcher.h b/Source/modules/device_orientation/DeviceOrientationDispatcher.h
|
| index 6d8fc0c8fb4af7205bed58dbe54ed270d2c4a12f..89b28c897392781e45d29679e25a1186bcd280c5 100644
|
| --- a/Source/modules/device_orientation/DeviceOrientationDispatcher.h
|
| +++ b/Source/modules/device_orientation/DeviceOrientationDispatcher.h
|
| @@ -35,7 +35,7 @@
|
| #include "public/platform/WebDeviceOrientationListener.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| -namespace WebKit {
|
| +namespace blink {
|
| class WebDeviceOrientationData;
|
| }
|
|
|
| @@ -46,7 +46,7 @@ class DeviceOrientationData;
|
|
|
| // This class listens to device motion data and dispatches it to all
|
| // listening controllers.
|
| -class DeviceOrientationDispatcher : public DeviceSensorEventDispatcher, public WebKit::WebDeviceOrientationListener {
|
| +class DeviceOrientationDispatcher : public DeviceSensorEventDispatcher, public blink::WebDeviceOrientationListener {
|
| public:
|
| static DeviceOrientationDispatcher& instance();
|
|
|
| @@ -55,7 +55,7 @@ public:
|
| DeviceOrientationData* latestDeviceOrientationData();
|
|
|
| // This method is called every time new device motion data is available.
|
| - virtual void didChangeDeviceOrientation(const WebKit::WebDeviceOrientationData&) OVERRIDE;
|
| + virtual void didChangeDeviceOrientation(const blink::WebDeviceOrientationData&) OVERRIDE;
|
| void addDeviceOrientationController(NewDeviceOrientationController*);
|
| void removeDeviceOrientationController(NewDeviceOrientationController*);
|
|
|
|
|