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

Unified Diff: Source/modules/device_orientation/DeviceOrientationDispatcher.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/DeviceOrientationDispatcher.h
diff --git a/Source/modules/device_orientation/DeviceOrientationDispatcher.h b/Source/modules/device_orientation/DeviceOrientationDispatcher.h
index cd9a60cd88993880cbd8229926383c55834c7657..b9001d72fd16aa8008ba792991a2a18f37cd90f5 100644
--- a/Source/modules/device_orientation/DeviceOrientationDispatcher.h
+++ b/Source/modules/device_orientation/DeviceOrientationDispatcher.h
@@ -37,16 +37,13 @@
#include "wtf/RefPtr.h"
namespace blink {
-class WebDeviceOrientationData;
-}
-
-namespace blink {
class DeviceOrientationController;
class DeviceOrientationData;
+class WebDeviceOrientationData;
// This class listens to device orientation data and notifies all registered controllers.
-class DeviceOrientationDispatcher : public PlatformEventDispatcher, public blink::WebDeviceOrientationListener {
+class DeviceOrientationDispatcher : public PlatformEventDispatcher, public WebDeviceOrientationListener {
public:
static DeviceOrientationDispatcher& instance();
@@ -55,7 +52,7 @@ public:
DeviceOrientationData* latestDeviceOrientationData();
// Inherited from WebDeviceOrientationListener.
- virtual void didChangeDeviceOrientation(const blink::WebDeviceOrientationData&) OVERRIDE;
+ virtual void didChangeDeviceOrientation(const WebDeviceOrientationData&) OVERRIDE;
private:
DeviceOrientationDispatcher();

Powered by Google App Engine
This is Rietveld 408576698