Title: [126209] trunk/Source/WebKit
Revision
126209
Author
[email protected]
Date
2012-08-21 16:16:52 -0700 (Tue, 21 Aug 2012)

Log Message

[EFL][GTK][BlackBerry] Fix build error in the DeviceOrientationClient
https://bugs.webkit.org/show_bug.cgi?id=94586

Patch by Kihong Kwon <[email protected]> on 2012-08-21
Reviewed by Kentaro Hara.

Source/WebKit/blackberry:

Fix build error in the DeviceOrientationClientBlackBerry.cpp.
It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.

* WebCoreSupport/DeviceOrientationClientBlackBerry.cpp:
(DeviceOrientationClientBlackBerry::lastOrientation):

Source/WebKit/efl:

Fix build error in the DeviceOrientationClientEfl.cpp.
It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.

* WebCoreSupport/DeviceOrientationClientEfl.cpp:
(WebCore::DeviceOrientationClientEfl::lastOrientation):

Source/WebKit/gtk:

Fix build error in the DeviceOrientationClientGtk.cpp.
It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.

* WebCoreSupport/DeviceOrientationClientGtk.cpp:
(WebKit::DeviceOrientationClientGtk::lastOrientation):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (126208 => 126209)


--- trunk/Source/WebKit/blackberry/ChangeLog	2012-08-21 23:16:24 UTC (rev 126208)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2012-08-21 23:16:52 UTC (rev 126209)
@@ -1,3 +1,16 @@
+2012-08-21  Kihong Kwon  <[email protected]>
+
+        [EFL][GTK][BlackBerry] Fix build error in the DeviceOrientationClient
+        https://bugs.webkit.org/show_bug.cgi?id=94586
+
+        Reviewed by Kentaro Hara.
+
+        Fix build error in the DeviceOrientationClientBlackBerry.cpp.
+        It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.
+
+        * WebCoreSupport/DeviceOrientationClientBlackBerry.cpp:
+        (DeviceOrientationClientBlackBerry::lastOrientation):
+
 2012-08-21  Jacky Jiang  <[email protected]>
 
         [BlackBerry] about:memory and about:memory-live should show numbers for the chrome process

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/DeviceOrientationClientBlackBerry.cpp (126208 => 126209)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/DeviceOrientationClientBlackBerry.cpp	2012-08-21 23:16:24 UTC (rev 126208)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/DeviceOrientationClientBlackBerry.cpp	2012-08-21 23:16:52 UTC (rev 126209)
@@ -62,7 +62,7 @@
         m_tracker->suspend();
 }
 
-DeviceOrientation* DeviceOrientationClientBlackBerry::lastOrientation() const
+DeviceOrientationData* DeviceOrientationClientBlackBerry::lastOrientation() const
 {
     return m_currentOrientation.get();
 }

Modified: trunk/Source/WebKit/efl/ChangeLog (126208 => 126209)


--- trunk/Source/WebKit/efl/ChangeLog	2012-08-21 23:16:24 UTC (rev 126208)
+++ trunk/Source/WebKit/efl/ChangeLog	2012-08-21 23:16:52 UTC (rev 126209)
@@ -1,3 +1,16 @@
+2012-08-21  Kihong Kwon  <[email protected]>
+
+        [EFL][GTK][BlackBerry] Fix build error in the DeviceOrientationClient
+        https://bugs.webkit.org/show_bug.cgi?id=94586
+
+        Reviewed by Kentaro Hara.
+
+        Fix build error in the DeviceOrientationClientEfl.cpp.
+        It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.
+
+        * WebCoreSupport/DeviceOrientationClientEfl.cpp:
+        (WebCore::DeviceOrientationClientEfl::lastOrientation):
+
 2012-08-20  Thiago Marcos P. Santos  <[email protected]>
 
         Regression(r124945): Build is broken when touch events is disabled

Modified: trunk/Source/WebKit/efl/WebCoreSupport/DeviceOrientationClientEfl.cpp (126208 => 126209)


--- trunk/Source/WebKit/efl/WebCoreSupport/DeviceOrientationClientEfl.cpp	2012-08-21 23:16:24 UTC (rev 126208)
+++ trunk/Source/WebKit/efl/WebCoreSupport/DeviceOrientationClientEfl.cpp	2012-08-21 23:16:52 UTC (rev 126209)
@@ -62,7 +62,7 @@
     notImplemented();
 }
 
-DeviceOrientation* DeviceOrientationClientEfl::lastOrientation() const
+DeviceOrientationData* DeviceOrientationClientEfl::lastOrientation() const
 {
     notImplemented();
     return 0;

Modified: trunk/Source/WebKit/gtk/ChangeLog (126208 => 126209)


--- trunk/Source/WebKit/gtk/ChangeLog	2012-08-21 23:16:24 UTC (rev 126208)
+++ trunk/Source/WebKit/gtk/ChangeLog	2012-08-21 23:16:52 UTC (rev 126209)
@@ -1,3 +1,16 @@
+2012-08-21  Kihong Kwon  <[email protected]>
+
+        [EFL][GTK][BlackBerry] Fix build error in the DeviceOrientationClient
+        https://bugs.webkit.org/show_bug.cgi?id=94586
+
+        Reviewed by Kentaro Hara.
+
+        Fix build error in the DeviceOrientationClientGtk.cpp.
+        It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.
+
+        * WebCoreSupport/DeviceOrientationClientGtk.cpp:
+        (WebKit::DeviceOrientationClientGtk::lastOrientation):
+
 2012-08-21  Martin Robinson  <[email protected]>
 
         [GTK] Using a native window for the WebView breaks GtkOverlay

Modified: trunk/Source/WebKit/gtk/WebCoreSupport/DeviceOrientationClientGtk.cpp (126208 => 126209)


--- trunk/Source/WebKit/gtk/WebCoreSupport/DeviceOrientationClientGtk.cpp	2012-08-21 23:16:24 UTC (rev 126208)
+++ trunk/Source/WebKit/gtk/WebCoreSupport/DeviceOrientationClientGtk.cpp	2012-08-21 23:16:52 UTC (rev 126209)
@@ -58,7 +58,7 @@
     notImplemented();
 }
 
-DeviceOrientation* DeviceOrientationClientGtk::lastOrientation() const
+WebCore::DeviceOrientationData* DeviceOrientationClientGtk::lastOrientation() const
 {
     notImplemented();
     return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to