Changeset 160392 in webkit


Ignore:
Timestamp:
Dec 10, 2013 3:27:07 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] One more WK2 build fix
https://bugs.webkit.org/show_bug.cgi?id=125544

API::TypedObject has been renamed to API::ObjectImpl

Patch by Nick Diego Yamane <nick.yamane@openbossa.org> on 2013-12-10
Reviewed by Tim Horton.

  • Shared/WebBatteryStatus.h:
  • Shared/WebNetworkInfo.h:
  • UIProcess/CoordinatedGraphics/WebView.h:
  • UIProcess/WebBatteryManagerProxy.h:
  • UIProcess/WebNetworkInfoManagerProxy.h:
  • UIProcess/WebTextChecker.h:
  • UIProcess/WebVibrationProxy.h:
  • UIProcess/WebViewportAttributes.h:
  • UIProcess/efl/WebPopupItemEfl.h:
  • UIProcess/soup/WebSoupRequestManagerProxy.h:
Location:
trunk/Source/WebKit2
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r160391 r160392  
     12013-12-10  Nick Diego Yamane  <nick.yamane@openbossa.org>
     2
     3        [EFL] One more WK2 build fix
     4        https://bugs.webkit.org/show_bug.cgi?id=125544
     5
     6        API::TypedObject has been renamed to API::ObjectImpl
     7
     8        Reviewed by Tim Horton.
     9
     10        * Shared/WebBatteryStatus.h:
     11        * Shared/WebNetworkInfo.h:
     12        * UIProcess/CoordinatedGraphics/WebView.h:
     13        * UIProcess/WebBatteryManagerProxy.h:
     14        * UIProcess/WebNetworkInfoManagerProxy.h:
     15        * UIProcess/WebTextChecker.h:
     16        * UIProcess/WebVibrationProxy.h:
     17        * UIProcess/WebViewportAttributes.h:
     18        * UIProcess/efl/WebPopupItemEfl.h:
     19        * UIProcess/soup/WebSoupRequestManagerProxy.h:
     20
    1212013-12-10  Anders Carlsson  <andersca@apple.com>
    222
  • trunk/Source/WebKit2/Shared/WebBatteryStatus.h

    r159204 r160392  
    3636namespace WebKit {
    3737
    38 class WebBatteryStatus : public API::TypedObject<API::Object::Type::BatteryStatus> {
     38class WebBatteryStatus : public API::ObjectImpl<API::Object::Type::BatteryStatus> {
    3939public:
    4040    struct Data {
  • trunk/Source/WebKit2/Shared/WebNetworkInfo.h

    r159204 r160392  
    3636namespace WebKit {
    3737
    38 class WebNetworkInfo : public API::TypedObject<API::Object::Type::NetworkInfo> {
     38class WebNetworkInfo : public API::ObjectImpl<API::Object::Type::NetworkInfo> {
    3939public:
    4040    struct Data {
  • trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h

    r160321 r160392  
    3535#include "WebContext.h"
    3636#include "WebFullScreenManagerProxy.h"
    37 #include "WebGeometry.h"
    3837#include "WebPageGroup.h"
    3938#include "WebPageProxy.h"
     
    4847namespace WebKit {
    4948
    50 class WebView : public API::TypedObject<API::Object::Type::View>, public PageClient
     49class WebView : public API::ObjectImpl<API::Object::Type::View>, public PageClient
    5150#if ENABLE(FULLSCREEN_API)
    5251    , public WebFullScreenManagerProxyClient
  • trunk/Source/WebKit2/UIProcess/WebBatteryManagerProxy.h

    r160075 r160392  
    4040class WebBatteryStatus;
    4141
    42 class WebBatteryManagerProxy : public API::TypedObject<API::Object::Type::BatteryManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
     42class WebBatteryManagerProxy : public API::ObjectImpl<API::Object::Type::BatteryManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
    4343public:
    4444    static const char* supplementName();
  • trunk/Source/WebKit2/UIProcess/WebNetworkInfoManagerProxy.h

    r160075 r160392  
    4040class WebNetworkInfo;
    4141
    42 class WebNetworkInfoManagerProxy : public API::TypedObject<API::Object::Type::NetworkInfoManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
     42class WebNetworkInfoManagerProxy : public API::ObjectImpl<API::Object::Type::NetworkInfoManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
    4343public:
    4444    static const char* supplementName();
  • trunk/Source/WebKit2/UIProcess/WebTextChecker.h

    r160075 r160392  
    3636class WebPageProxy;
    3737
    38 class WebTextChecker : public API::TypedObject<API::Object::Type::TextChecker> {
     38class WebTextChecker : public API::ObjectImpl<API::Object::Type::TextChecker> {
    3939public:
    4040    static WebTextChecker* shared();
  • trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h

    r160075 r160392  
    3838class WebPageProxy;
    3939
    40 class WebVibrationProxy : public API::TypedObject<API::Object::Type::Vibration>, private CoreIPC::MessageReceiver {
     40class WebVibrationProxy : public API::ObjectImpl<API::Object::Type::Vibration>, private CoreIPC::MessageReceiver {
    4141public:
    4242    static PassRefPtr<WebVibrationProxy> create(WebPageProxy*);
  • trunk/Source/WebKit2/UIProcess/WebViewportAttributes.h

    r159204 r160392  
    3333namespace WebKit {
    3434
    35 class WebViewportAttributes : public API::TypedObject<API::Object::Type::ViewportAttributes> {
     35class WebViewportAttributes : public API::ObjectImpl<API::Object::Type::ViewportAttributes> {
    3636public:
    3737    static PassRefPtr<WebViewportAttributes> create(const WebCore::ViewportAttributes& attributes)
  • trunk/Source/WebKit2/UIProcess/efl/WebPopupItemEfl.h

    r159204 r160392  
    3333namespace WebKit {
    3434
    35 class WebPopupItemEfl : public API::TypedObject<API::Object::Type::PopupMenuItem> {
     35class WebPopupItemEfl : public API::ObjectImpl<API::Object::Type::PopupMenuItem> {
    3636public:
    3737    static PassRefPtr<WebPopupItemEfl> create(const WebPopupItem& data)
  • trunk/Source/WebKit2/UIProcess/soup/WebSoupRequestManagerProxy.h

    r160075 r160392  
    3535class WebData;
    3636
    37 class WebSoupRequestManagerProxy : public API::TypedObject<API::Object::Type::SoupRequestManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
     37class WebSoupRequestManagerProxy : public API::ObjectImpl<API::Object::Type::SoupRequestManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
    3838public:
    3939    static const char* supplementName();
Note: See TracChangeset for help on using the changeset viewer.