summaryrefslogtreecommitdiff
path: root/Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-06-25 13:35:59 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2012-06-25 13:35:59 +0200
commit79ad030d505ccf79cf10aa9f8189ca3e2f61f6f4 (patch)
tree0287b1a69d84492c901e8bc820e635e7133809a0 /Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h
parent682ab87480e7757346802ce7f54cfdbdfeb2339e (diff)
downloadqtwebkit-79ad030d505ccf79cf10aa9f8189ca3e2f61f6f4.tar.gz
Imported WebKit commit c4b613825abd39ac739a47d7b4410468fcef66dc (http://svn.webkit.org/repository/webkit/trunk@121147)
New snapshot that includes Win32 debug build fix (use SVGAllInOne)
Diffstat (limited to 'Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h')
-rw-r--r--Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h b/Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h
index b7c6aa53b..5dedd080c 100644
--- a/Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h
+++ b/Source/WebKit/mac/WebView/WebDeviceOrientationInternal.h
@@ -25,21 +25,21 @@
#import "WebDeviceOrientation.h"
-#import <WebCore/DeviceOrientation.h>
+#import <WebCore/DeviceOrientationData.h>
#import <wtf/RefPtr.h>
@interface WebDeviceOrientationInternal : NSObject {
@public
- RefPtr<WebCore::DeviceOrientation> m_orientation;
+ RefPtr<WebCore::DeviceOrientationData> m_orientation;
}
-- (id)initWithCoreDeviceOrientation:(PassRefPtr<WebCore::DeviceOrientation>)coreDeviceOrientation;
+- (id)initWithCoreDeviceOrientation:(PassRefPtr<WebCore::DeviceOrientationData>)coreDeviceOrientation;
@end
@interface WebDeviceOrientation (Internal)
-- (id)initWithCoreDeviceOrientation:(PassRefPtr<WebCore::DeviceOrientation>)coreDeviceOrientation;
+- (id)initWithCoreDeviceOrientation:(PassRefPtr<WebCore::DeviceOrientationData>)coreDeviceOrientation;
@end
-WebCore::DeviceOrientation* core(WebDeviceOrientation*);
+WebCore::DeviceOrientationData* core(WebDeviceOrientation*);