Index: content/renderer/device_orientation/device_motion_event_pump.h |
diff --git a/content/renderer/device_orientation/device_motion_event_pump.h b/content/renderer/device_orientation/device_motion_event_pump.h |
index 4fa453de819ab7fe24dcaadc333f0a0d416329fc..f262ad42685f4cb290296ab3e0f4f20118387676 100644 |
--- a/content/renderer/device_orientation/device_motion_event_pump.h |
+++ b/content/renderer/device_orientation/device_motion_event_pump.h |
@@ -10,13 +10,13 @@ |
#include "content/renderer/shared_memory_seqlock_reader.h" |
#include "third_party/WebKit/public/platform/WebDeviceMotionData.h" |
-namespace WebKit { |
+namespace blink { |
class WebDeviceMotionListener; |
} |
namespace content { |
-typedef SharedMemorySeqLockReader<WebKit::WebDeviceMotionData> |
+typedef SharedMemorySeqLockReader<blink::WebDeviceMotionData> |
DeviceMotionSharedMemoryReader; |
class CONTENT_EXPORT DeviceMotionEventPump : public DeviceSensorEventPump { |
@@ -27,7 +27,7 @@ class CONTENT_EXPORT DeviceMotionEventPump : public DeviceSensorEventPump { |
// Sets the listener to receive updates for device motion data at |
// regular intervals. Returns true if the registration was successful. |
- bool SetListener(WebKit::WebDeviceMotionListener* listener); |
+ bool SetListener(blink::WebDeviceMotionListener* listener); |
// RenderProcessObserver implementation. |
virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE; |
@@ -38,7 +38,7 @@ class CONTENT_EXPORT DeviceMotionEventPump : public DeviceSensorEventPump { |
virtual bool SendStartMessage() OVERRIDE; |
virtual bool SendStopMessage() OVERRIDE; |
- WebKit::WebDeviceMotionListener* listener_; |
+ blink::WebDeviceMotionListener* listener_; |
scoped_ptr<DeviceMotionSharedMemoryReader> reader_; |
}; |