Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2260)

Unified Diff: content/renderer/device_orientation/device_motion_event_pump.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698