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

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

Issue 464353002: Cleanup blink:: prefix usage in Source/core/modules/[battery/*.cpp to indexeddb/*.cpp] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 4 months 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 21d72f821416c1f0be2b769bb18d585432e8ef6e..b5c51b0a4ae9483f01b18e3e987a65893c535111 100644
--- a/Source/modules/device_orientation/DeviceMotionDispatcher.cpp
+++ b/Source/modules/device_orientation/DeviceMotionDispatcher.cpp
@@ -53,16 +53,16 @@ DeviceMotionDispatcher::~DeviceMotionDispatcher()
void DeviceMotionDispatcher::startListening()
{
- blink::Platform::current()->startListening(WebPlatformEventDeviceMotion, this);
+ Platform::current()->startListening(WebPlatformEventDeviceMotion, this);
}
void DeviceMotionDispatcher::stopListening()
{
- blink::Platform::current()->stopListening(WebPlatformEventDeviceMotion);
+ Platform::current()->stopListening(WebPlatformEventDeviceMotion);
m_lastDeviceMotionData.clear();
}
-void DeviceMotionDispatcher::didChangeDeviceMotion(const blink::WebDeviceMotionData& motion)
+void DeviceMotionDispatcher::didChangeDeviceMotion(const WebDeviceMotionData& motion)
{
m_lastDeviceMotionData = DeviceMotionData::create(motion);
notifyControllers();
« no previous file with comments | « Source/modules/device_orientation/DeviceMotionData.cpp ('k') | Source/modules/device_orientation/DeviceOrientationData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698