summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/DeviceOrientationEvent.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/WebCore/dom/DeviceOrientationEvent.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/WebCore/dom/DeviceOrientationEvent.h')
-rw-r--r--Source/WebCore/dom/DeviceOrientationEvent.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/WebCore/dom/DeviceOrientationEvent.h b/Source/WebCore/dom/DeviceOrientationEvent.h
index d95984312..e196ea5b9 100644
--- a/Source/WebCore/dom/DeviceOrientationEvent.h
+++ b/Source/WebCore/dom/DeviceOrientationEvent.h
@@ -30,7 +30,7 @@
namespace WebCore {
-class DeviceOrientation;
+class DeviceOrientationData;
class DeviceOrientationEvent : public Event {
public:
@@ -39,22 +39,22 @@ public:
{
return adoptRef(new DeviceOrientationEvent);
}
- static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientation* orientation)
+ static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation)
{
return adoptRef(new DeviceOrientationEvent(eventType, orientation));
}
- void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientation*);
+ void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData*);
- DeviceOrientation* orientation() const { return m_orientation.get(); }
+ DeviceOrientationData* orientation() const { return m_orientation.get(); }
virtual const AtomicString& interfaceName() const;
private:
DeviceOrientationEvent();
- DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientation*);
+ DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData*);
- RefPtr<DeviceOrientation> m_orientation;
+ RefPtr<DeviceOrientationData> m_orientation;
};
} // namespace WebCore