Changeset 161413 in webkit


Ignore:
Timestamp:
Jan 7, 2014 1:36:46 AM (10 years ago)
Author:
jinwoo7.song@samsung.com
Message:

WebKit2 EFL build fix after r161387
https://bugs.webkit.org/show_bug.cgi?id=126566

Reviewed by Andreas Kling.

Add missing ASYNC_SCROLLING macro.

  • UIProcess/WebPageProxy.h:
  • WebProcess/WebCoreSupport/WebChromeClient.cpp:
  • WebProcess/WebCoreSupport/WebChromeClient.h:
  • WebProcess/WebPage/WebPage.cpp:
  • WebProcess/WebPage/WebPage.h:
Location:
trunk/Source/WebKit2
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r161387 r161413  
     12014-01-07  Jinwoo Song  <jinwoo7.song@samsung.com>
     2
     3        WebKit2 EFL build fix after r161387
     4        https://bugs.webkit.org/show_bug.cgi?id=126566
     5
     6        Reviewed by Andreas Kling.
     7
     8        Add missing ASYNC_SCROLLING macro.
     9
     10        * UIProcess/WebPageProxy.h:
     11        * WebProcess/WebCoreSupport/WebChromeClient.cpp:
     12        * WebProcess/WebCoreSupport/WebChromeClient.h:
     13        * WebProcess/WebPage/WebPage.cpp:
     14        * WebProcess/WebPage/WebPage.h:
     15
    1162014-01-06  Simon Fraser  <simon.fraser@apple.com>
    217
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.h

    r161387 r161413  
    338338    DrawingAreaProxy* drawingArea() const { return m_drawingArea.get(); }
    339339   
     340#if ENABLE(ASYNC_SCROLLING)
    340341    RemoteScrollingCoordinatorProxy* scrollingCoordinatorProxy() const { return m_scrollingCoordinatorProxy.get(); }
     342#endif
    341343
    342344    WebBackForwardList& backForwardList() { return m_backForwardList.get(); }
     
    11731175
    11741176    std::unique_ptr<DrawingAreaProxy> m_drawingArea;
     1177#if ENABLE(ASYNC_SCROLLING)
    11751178    std::unique_ptr<RemoteScrollingCoordinatorProxy> m_scrollingCoordinatorProxy;
     1179#endif
    11761180
    11771181    Ref<WebProcessProxy> m_process;
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp

    r161387 r161413  
    3333#include "LayerTreeHost.h"
    3434#include "PageBanner.h"
    35 #include "RemoteScrollingCoordinator.h"
    3635#include "WebColorChooser.h"
    3736#include "WebCoreArgumentCoders.h"
     
    7170#include <WebCore/Settings.h>
    7271
     72#if ENABLE(ASYNC_SCROLLING)
     73#include "RemoteScrollingCoordinator.h"
     74#endif
     75
    7376using namespace WebCore;
    7477using namespace HTMLNames;
     
    800803#endif
    801804
     805#if ENABLE(ASYNC_SCROLLING)
    802806PassRefPtr<ScrollingCoordinator> WebChromeClient::createScrollingCoordinator(Page* page) const
    803807{
     
    808812    return 0;
    809813}
     814#endif
    810815
    811816#if ENABLE(TOUCH_EVENTS)
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.h

    r161387 r161413  
    228228#endif
    229229
     230#if ENABLE(ASYNC_SCROLLING)
    230231    virtual PassRefPtr<WebCore::ScrollingCoordinator> createScrollingCoordinator(WebCore::Page*) const OVERRIDE;
     232#endif
    231233
    232234#if ENABLE(TOUCH_EVENTS)
  • trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp

    r161387 r161413  
    31523152}
    31533153
     3154#if ENABLE(ASYNC_SCROLLING)
    31543155ScrollingCoordinator* WebPage::scrollingCoordinator() const
    31553156{
    31563157    return m_page->scrollingCoordinator();
    31573158}
     3159#endif
    31583160
    31593161WebPage::SandboxExtensionTracker::~SandboxExtensionTracker()
  • trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h

    r161387 r161413  
    184184    InjectedBundleBackForwardList* backForwardList();
    185185    DrawingArea* drawingArea() const { return m_drawingArea.get(); }
     186#if ENABLE(ASYNC_SCROLLING)
    186187    WebCore::ScrollingCoordinator* scrollingCoordinator() const;
     188#endif
    187189
    188190    WebPageGroupProxy* pageGroup() const { return m_pageGroup.get(); }
Note: See TracChangeset for help on using the changeset viewer.