Index: Source/modules/device_orientation/DeviceOrientationDispatcher.cpp |
diff --git a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp |
index 24fd9bf3d31e6a99f5b8bd966a2f9189a0b01812..c446692be9eaf9cd928248f29f38e7515cd3095b 100644 |
--- a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp |
+++ b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp |
@@ -64,16 +64,16 @@ void DeviceOrientationDispatcher::removeDeviceOrientationController(NewDeviceOri |
void DeviceOrientationDispatcher::startListening() |
{ |
- WebKit::Platform::current()->setDeviceOrientationListener(this); |
+ blink::Platform::current()->setDeviceOrientationListener(this); |
} |
void DeviceOrientationDispatcher::stopListening() |
{ |
- WebKit::Platform::current()->setDeviceOrientationListener(0); |
+ blink::Platform::current()->setDeviceOrientationListener(0); |
m_lastDeviceOrientationData.clear(); |
} |
-void DeviceOrientationDispatcher::didChangeDeviceOrientation(const WebKit::WebDeviceOrientationData& motion) |
+void DeviceOrientationDispatcher::didChangeDeviceOrientation(const blink::WebDeviceOrientationData& motion) |
{ |
m_lastDeviceOrientationData = DeviceOrientationData::create(motion); |