X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fmodules%2Fdevice_orientation%2FDeviceOrientationData.h;h=247ad70f52f41d273412bfb88846f63af83b6cd1;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=b968a23a3a05aae0ce5b91bbc91670a85e8083d3;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.h b/src/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.h index b968a23..247ad70 100644 --- a/src/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.h +++ b/src/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.h @@ -30,16 +30,14 @@ #include "wtf/RefCounted.h" namespace blink { -class WebDeviceOrientationData; -} -namespace WebCore { +class WebDeviceOrientationData; class DeviceOrientationData : public RefCountedWillBeGarbageCollected { public: static PassRefPtrWillBeRawPtr create(); static PassRefPtrWillBeRawPtr create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute = false, bool absolute = false); - static PassRefPtrWillBeRawPtr create(const blink::WebDeviceOrientationData&); + static PassRefPtrWillBeRawPtr create(const WebDeviceOrientationData&); void trace(Visitor*) { } double alpha() const; @@ -67,6 +65,6 @@ private: bool m_absolute; }; -} // namespace WebCore +} // namespace blink #endif // DeviceOrientationData_h