From 79ad030d505ccf79cf10aa9f8189ca3e2f61f6f4 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 25 Jun 2012 13:35:59 +0200 Subject: Imported WebKit commit c4b613825abd39ac739a47d7b4410468fcef66dc (http://svn.webkit.org/repository/webkit/trunk@121147) New snapshot that includes Win32 debug build fix (use SVGAllInOne) --- Source/WebCore/dom/DeviceOrientationController.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/WebCore/dom/DeviceOrientationController.cpp') diff --git a/Source/WebCore/dom/DeviceOrientationController.cpp b/Source/WebCore/dom/DeviceOrientationController.cpp index 5d4bcddff..0d002c1e2 100644 --- a/Source/WebCore/dom/DeviceOrientationController.cpp +++ b/Source/WebCore/dom/DeviceOrientationController.cpp @@ -26,8 +26,8 @@ #include "config.h" #include "DeviceOrientationController.h" -#include "DeviceOrientation.h" #include "DeviceOrientationClient.h" +#include "DeviceOrientationData.h" #include "DeviceOrientationEvent.h" namespace WebCore { @@ -55,7 +55,7 @@ void DeviceOrientationController::timerFired(Timer* ASSERT_UNUSED(timer, timer == &m_timer); ASSERT(m_client->lastOrientation()); - RefPtr orientation = m_client->lastOrientation(); + RefPtr orientation = m_client->lastOrientation(); RefPtr event = DeviceOrientationEvent::create(eventNames().deviceorientationEvent, orientation.get()); Vector > listenersVector; @@ -127,7 +127,7 @@ void DeviceOrientationController::resumeEventsForAllListeners(DOMWindow* window) addListener(window); } -void DeviceOrientationController::didChangeDeviceOrientation(DeviceOrientation* orientation) +void DeviceOrientationController::didChangeDeviceOrientation(DeviceOrientationData* orientation) { RefPtr event = DeviceOrientationEvent::create(eventNames().deviceorientationEvent, orientation); Vector > listenersVector; -- cgit v1.2.1