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

Unified Diff: Source/modules/device_orientation/DeviceOrientationDispatcher.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/DeviceOrientationDispatcher.cpp
diff --git a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
index 24fd9bf3d31e6a99f5b8bd966a2f9189a0b01812..c446692be9eaf9cd928248f29f38e7515cd3095b 100644
--- a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
+++ b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
@@ -64,16 +64,16 @@ void DeviceOrientationDispatcher::removeDeviceOrientationController(NewDeviceOri
void DeviceOrientationDispatcher::startListening()
{
- WebKit::Platform::current()->setDeviceOrientationListener(this);
+ blink::Platform::current()->setDeviceOrientationListener(this);
}
void DeviceOrientationDispatcher::stopListening()
{
- WebKit::Platform::current()->setDeviceOrientationListener(0);
+ blink::Platform::current()->setDeviceOrientationListener(0);
m_lastDeviceOrientationData.clear();
}
-void DeviceOrientationDispatcher::didChangeDeviceOrientation(const WebKit::WebDeviceOrientationData& motion)
+void DeviceOrientationDispatcher::didChangeDeviceOrientation(const blink::WebDeviceOrientationData& motion)
{
m_lastDeviceOrientationData = DeviceOrientationData::create(motion);
« no previous file with comments | « Source/modules/device_orientation/DeviceOrientationDispatcher.h ('k') | Source/modules/filesystem/DOMFileSystemBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698