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

Unified Diff: Source/modules/device_orientation/DeviceOrientationDispatcher.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/DeviceOrientationDispatcher.cpp
diff --git a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
index 9896ea31022d6f082718bc875ee492a5bfa3ab9e..9b24851d369621eb80763bedb61755bc1a58a621 100644
--- a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
+++ b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
@@ -53,16 +53,16 @@ DeviceOrientationDispatcher::~DeviceOrientationDispatcher()
void DeviceOrientationDispatcher::startListening()
{
- blink::Platform::current()->startListening(WebPlatformEventDeviceOrientation, this);
+ Platform::current()->startListening(WebPlatformEventDeviceOrientation, this);
}
void DeviceOrientationDispatcher::stopListening()
{
- blink::Platform::current()->stopListening(WebPlatformEventDeviceOrientation);
+ Platform::current()->stopListening(WebPlatformEventDeviceOrientation);
m_lastDeviceOrientationData.clear();
}
-void DeviceOrientationDispatcher::didChangeDeviceOrientation(const blink::WebDeviceOrientationData& motion)
+void DeviceOrientationDispatcher::didChangeDeviceOrientation(const WebDeviceOrientationData& motion)
{
m_lastDeviceOrientationData = DeviceOrientationData::create(motion);
notifyControllers();

Powered by Google App Engine
This is Rietveld 408576698