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

Unified Diff: Source/modules/device_orientation/DeviceMotionDispatcher.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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: 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);
« no previous file with comments | « Source/modules/device_orientation/DeviceMotionDispatcher.h ('k') | Source/modules/device_orientation/DeviceOrientationData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698