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

Unified Diff: Source/modules/device_orientation/DeviceOrientationData.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/DeviceOrientationData.h
diff --git a/Source/modules/device_orientation/DeviceOrientationData.h b/Source/modules/device_orientation/DeviceOrientationData.h
index 8cf9c0fb008195cd3c0d78f7ba43a9273b448437..247ad70f52f41d273412bfb88846f63af83b6cd1 100644
--- a/Source/modules/device_orientation/DeviceOrientationData.h
+++ b/Source/modules/device_orientation/DeviceOrientationData.h
@@ -30,16 +30,14 @@
#include "wtf/RefCounted.h"
namespace blink {
-class WebDeviceOrientationData;
-}
-namespace blink {
+class WebDeviceOrientationData;
class DeviceOrientationData : public RefCountedWillBeGarbageCollected<DeviceOrientationData> {
public:
static PassRefPtrWillBeRawPtr<DeviceOrientationData> create();
static PassRefPtrWillBeRawPtr<DeviceOrientationData> create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute = false, bool absolute = false);
- static PassRefPtrWillBeRawPtr<DeviceOrientationData> create(const blink::WebDeviceOrientationData&);
+ static PassRefPtrWillBeRawPtr<DeviceOrientationData> create(const WebDeviceOrientationData&);
void trace(Visitor*) { }
double alpha() const;

Powered by Google App Engine
This is Rietveld 408576698