Index: Source/modules/device_orientation/DeviceMotionDispatcher.cpp |
diff --git a/Source/modules/device_orientation/DeviceMotionDispatcher.cpp b/Source/modules/device_orientation/DeviceMotionDispatcher.cpp |
index 79faf3dde0e5b39b93ea26afbf5028e174813adf..00efc88d654af576347692862def7ad2b7359c9c 100644 |
--- a/Source/modules/device_orientation/DeviceMotionDispatcher.cpp |
+++ b/Source/modules/device_orientation/DeviceMotionDispatcher.cpp |
@@ -64,16 +64,16 @@ void DeviceMotionDispatcher::removeDeviceMotionController(DeviceMotionController |
void DeviceMotionDispatcher::startListening() |
{ |
- WebKit::Platform::current()->setDeviceMotionListener(this); |
+ blink::Platform::current()->setDeviceMotionListener(this); |
} |
void DeviceMotionDispatcher::stopListening() |
{ |
- WebKit::Platform::current()->setDeviceMotionListener(0); |
+ blink::Platform::current()->setDeviceMotionListener(0); |
m_lastDeviceMotionData.clear(); |
} |
-void DeviceMotionDispatcher::didChangeDeviceMotion(const WebKit::WebDeviceMotionData& motion) |
+void DeviceMotionDispatcher::didChangeDeviceMotion(const blink::WebDeviceMotionData& motion) |
{ |
m_lastDeviceMotionData = DeviceMotionData::create(motion); |