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

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

Issue 466813003: Cleanup namespace usage in Source/core/modules/[battery/* to indexeddb/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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.h
diff --git a/Source/modules/device_orientation/DeviceMotionDispatcher.h b/Source/modules/device_orientation/DeviceMotionDispatcher.h
index 0cc07b003d6f162b1170ce471332934e7408445c..09c2ff1f04b0ada005db153a239e00ea9694bb36 100644
--- a/Source/modules/device_orientation/DeviceMotionDispatcher.h
+++ b/Source/modules/device_orientation/DeviceMotionDispatcher.h
@@ -37,16 +37,13 @@
#include "wtf/RefPtr.h"
namespace blink {
-class WebDeviceMotionData;
-}
-
-namespace blink {
class DeviceMotionController;
class DeviceMotionData;
+class WebDeviceMotionData;
// This class listens to device motion data and notifies all registered controllers.
-class DeviceMotionDispatcher FINAL : public PlatformEventDispatcher, public blink::WebDeviceMotionListener {
+class DeviceMotionDispatcher FINAL : public PlatformEventDispatcher, public WebDeviceMotionListener {
public:
static DeviceMotionDispatcher& instance();
@@ -55,7 +52,7 @@ public:
DeviceMotionData* latestDeviceMotionData();
// Inherited from WebDeviceMotionListener.
- virtual void didChangeDeviceMotion(const blink::WebDeviceMotionData&) OVERRIDE;
+ virtual void didChangeDeviceMotion(const WebDeviceMotionData&) OVERRIDE;
private:
DeviceMotionDispatcher();
« no previous file with comments | « Source/modules/device_orientation/DeviceMotionData.h ('k') | Source/modules/device_orientation/DeviceOrientationData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698