Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / device_orientation / DeviceOrientationData.h
index b968a23..247ad70 100644 (file)
 #include "wtf/RefCounted.h"
 
 namespace blink {
-class WebDeviceOrientationData;
-}
 
-namespace WebCore {
+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;
@@ -67,6 +65,6 @@ private:
     bool m_absolute;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // DeviceOrientationData_h