Changeset 126209 in webkit


Ignore:
Timestamp:
Aug 21, 2012 4:16:52 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Kihong Kwon <kihong.kwon@samsung.com> 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):

Location:
trunk/Source/WebKit
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/blackberry/ChangeLog

    r126181 r126209  
     12012-08-21  Kihong Kwon  <kihong.kwon@samsung.com>
     2
     3        [EFL][GTK][BlackBerry] Fix build error in the DeviceOrientationClient
     4        https://bugs.webkit.org/show_bug.cgi?id=94586
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Fix build error in the DeviceOrientationClientBlackBerry.cpp.
     9        It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.
     10
     11        * WebCoreSupport/DeviceOrientationClientBlackBerry.cpp:
     12        (DeviceOrientationClientBlackBerry::lastOrientation):
     13
    1142012-08-21  Jacky Jiang  <zhajiang@rim.com>
    215
  • trunk/Source/WebKit/blackberry/WebCoreSupport/DeviceOrientationClientBlackBerry.cpp

    r106976 r126209  
    6363}
    6464
    65 DeviceOrientation* DeviceOrientationClientBlackBerry::lastOrientation() const
     65DeviceOrientationData* DeviceOrientationClientBlackBerry::lastOrientation() const
    6666{
    6767    return m_currentOrientation.get();
  • trunk/Source/WebKit/efl/ChangeLog

    r126022 r126209  
     12012-08-21  Kihong Kwon  <kihong.kwon@samsung.com>
     2
     3        [EFL][GTK][BlackBerry] Fix build error in the DeviceOrientationClient
     4        https://bugs.webkit.org/show_bug.cgi?id=94586
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Fix build error in the DeviceOrientationClientEfl.cpp.
     9        It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.
     10
     11        * WebCoreSupport/DeviceOrientationClientEfl.cpp:
     12        (WebCore::DeviceOrientationClientEfl::lastOrientation):
     13
    1142012-08-20  Thiago Marcos P. Santos  <thiago.santos@intel.com>
    215
  • trunk/Source/WebKit/efl/WebCoreSupport/DeviceOrientationClientEfl.cpp

    r95901 r126209  
    6363}
    6464
    65 DeviceOrientation* DeviceOrientationClientEfl::lastOrientation() const
     65DeviceOrientationData* DeviceOrientationClientEfl::lastOrientation() const
    6666{
    6767    notImplemented();
  • trunk/Source/WebKit/gtk/ChangeLog

    r126182 r126209  
     12012-08-21  Kihong Kwon  <kihong.kwon@samsung.com>
     2
     3        [EFL][GTK][BlackBerry] Fix build error in the DeviceOrientationClient
     4        https://bugs.webkit.org/show_bug.cgi?id=94586
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Fix build error in the DeviceOrientationClientGtk.cpp.
     9        It is occured because DeviceOrientation is changed to DeviceOrientationData in the WebCore.
     10
     11        * WebCoreSupport/DeviceOrientationClientGtk.cpp:
     12        (WebKit::DeviceOrientationClientGtk::lastOrientation):
     13
    1142012-08-21  Martin Robinson  <mrobinson@igalia.com>
    215
  • trunk/Source/WebKit/gtk/WebCoreSupport/DeviceOrientationClientGtk.cpp

    r95901 r126209  
    5959}
    6060
    61 DeviceOrientation* DeviceOrientationClientGtk::lastOrientation() const
     61WebCore::DeviceOrientationData* DeviceOrientationClientGtk::lastOrientation() const
    6262{
    6363    notImplemented();
Note: See TracChangeset for help on using the changeset viewer.