Index: content/renderer/device_orientation/device_motion_event_pump.cc |
diff --git a/content/renderer/device_orientation/device_motion_event_pump.cc b/content/renderer/device_orientation/device_motion_event_pump.cc |
index e7ad8cacb7ba9c7f88d6bca8a7538c95844880e0..c60bd7a1265851212a05eae0625409ea37328a80 100644 |
--- a/content/renderer/device_orientation/device_motion_event_pump.cc |
+++ b/content/renderer/device_orientation/device_motion_event_pump.cc |
@@ -22,7 +22,7 @@ DeviceMotionEventPump::~DeviceMotionEventPump() { |
} |
bool DeviceMotionEventPump::SetListener( |
- WebKit::WebDeviceMotionListener* listener) { |
+ blink::WebDeviceMotionListener* listener) { |
listener_ = listener; |
return listener_ ? RequestStart() : Stop(); |
} |
@@ -39,7 +39,7 @@ bool DeviceMotionEventPump::OnControlMessageReceived( |
void DeviceMotionEventPump::FireEvent() { |
DCHECK(listener_); |
- WebKit::WebDeviceMotionData data; |
+ blink::WebDeviceMotionData data; |
if (reader_->GetLatestData(&data) && data.allAvailableSensorsAreActive) |
listener_->didChangeDeviceMotion(data); |
} |