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

Unified Diff: Source/modules/device_light/DeviceLightDispatcher.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_light/DeviceLightDispatcher.cpp
diff --git a/Source/modules/device_light/DeviceLightDispatcher.cpp b/Source/modules/device_light/DeviceLightDispatcher.cpp
index 05870d49123db6b7986d88311f654abd853810a3..d56a0a03d95d705c0a6e799d277596521f511f88 100644
--- a/Source/modules/device_light/DeviceLightDispatcher.cpp
+++ b/Source/modules/device_light/DeviceLightDispatcher.cpp
@@ -27,12 +27,12 @@ DeviceLightDispatcher::~DeviceLightDispatcher()
void DeviceLightDispatcher::startListening()
{
- blink::Platform::current()->startListening(WebPlatformEventDeviceLight, this);
+ Platform::current()->startListening(WebPlatformEventDeviceLight, this);
}
void DeviceLightDispatcher::stopListening()
{
- blink::Platform::current()->stopListening(WebPlatformEventDeviceLight);
+ Platform::current()->stopListening(WebPlatformEventDeviceLight);
m_lastDeviceLightData = -1;
}
« no previous file with comments | « Source/modules/battery/BatteryDispatcher.cpp ('k') | Source/modules/device_orientation/DeviceMotionData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698