Changeset 172690 in webkit


Ignore:
Timestamp:
Aug 16, 2014 7:26:17 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] build fails with error: cannot allocate an object of abstract type 'WebKit::PageClientImpl'
https://bugs.webkit.org/show_bug.cgi?id=136017

Patch by Byungseon Shin <sun.shin@lge.com> on 2014-08-16
Reviewed by Gyuyoung Kim.

  • UIProcess/API/gtk/PageClientImpl.cpp:

(WebKit::PageClientImpl::didFirstVisuallyNonEmptyLayoutForMainFrame):
(WebKit::PageClientImpl::didFinishLoadForMainFrame):

  • UIProcess/API/gtk/PageClientImpl.h:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r172685 r172690  
     12014-08-16  Byungseon Shin  <sun.shin@lge.com>
     2
     3        [GTK] build fails with error: cannot allocate an object of abstract type 'WebKit::PageClientImpl'
     4        https://bugs.webkit.org/show_bug.cgi?id=136017
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * UIProcess/API/gtk/PageClientImpl.cpp:
     9        (WebKit::PageClientImpl::didFirstVisuallyNonEmptyLayoutForMainFrame):
     10        (WebKit::PageClientImpl::didFinishLoadForMainFrame):
     11        * UIProcess/API/gtk/PageClientImpl.h:
     12
    1132014-08-15  Ryuan Choi  <ryuan.choi@samsung.com>
    214
  • trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp

    r171048 r172690  
    399399}
    400400
     401void PageClientImpl::didFirstVisuallyNonEmptyLayoutForMainFrame()
     402{
     403}
     404
     405void PageClientImpl::didFinishLoadForMainFrame()
     406{
     407}
     408
    401409} // namespace WebKit
  • trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h

    r171048 r172690  
    128128    virtual void willRecordNavigationSnapshot(WebBackForwardListItem&) override;
    129129
     130    virtual void didFirstVisuallyNonEmptyLayoutForMainFrame() override;
     131    virtual void didFinishLoadForMainFrame() override;
     132
    130133    virtual void doneWithTouchEvent(const NativeWebTouchEvent&, bool wasEventHandled) override;
    131134
Note: See TracChangeset for help on using the changeset viewer.