Changeset 62295 in webkit


Ignore:
Timestamp:
Jul 1, 2010 1:44:53 PM (14 years ago)
Author:
tonikitoo@webkit.org
Message:

Initial WebKit2 implementation https://bugs.webkit.org/show_bug.cgi?id=40233

Reviewed by Antti Koivisto.
Patch by Kenneth Christiansen <kenneth@webkit.org>

Add implementation of the UI and loader client for Qt.

  • UIProcess/API/qt/qwkpage.cpp:
  • UIProcess/API/qt/ClientImpl.cpp: Added.

(toQWKPage):
(qt_wk_didStartProvisionalLoadForFrame):
(qt_wk_didReceiveServerRedirectForProvisionalLoadForFrame):
(qt_wk_didFailProvisionalLoadWithErrorForFrame):
(qt_wk_didCommitLoadForFrame):
(qt_wk_didFinishLoadForFrame):
(qt_wk_didFailLoadWithErrorForFrame):
(qt_wk_didReceiveTitleForFrame):
(qt_wk_didFirstLayoutForFrame):
(qt_wk_didFirstVisuallyNonEmptyLayoutForFrame):
(qt_wk_didStartProgress):
(qt_wk_didChangeProgress):
(qt_wk_didFinishProgress):
(qt_wk_didBecomeUnresponsive):
(qt_wk_didBecomeResponsive):
(qt_wk_createNewPage):
(qt_wk_showPage):
(qt_wk_close):
(qt_wk_runJavaScriptAlert):

  • UIProcess/API/qt/ClientImpl.h: Added.
Location:
trunk/WebKit2
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r62294 r62295  
     12010-07-01  Kenneth Rohde Christiansen  <kenneth.christiansen@openbossa.org>
     2
     3        Reviewed by Antti Koivisto.
     4
     5        [Qt] Initial WebKit2 implementation
     6        https://bugs.webkit.org/show_bug.cgi?id=40233
     7
     8        Add implementation of the UI and loader client for Qt.
     9
     10        * UIProcess/API/qt/qwkpage.cpp:
     11        * UIProcess/API/qt/ClientImpl.cpp: Added.
     12        (toQWKPage):
     13        (qt_wk_didStartProvisionalLoadForFrame):
     14        (qt_wk_didReceiveServerRedirectForProvisionalLoadForFrame):
     15        (qt_wk_didFailProvisionalLoadWithErrorForFrame):
     16        (qt_wk_didCommitLoadForFrame):
     17        (qt_wk_didFinishLoadForFrame):
     18        (qt_wk_didFailLoadWithErrorForFrame):
     19        (qt_wk_didReceiveTitleForFrame):
     20        (qt_wk_didFirstLayoutForFrame):
     21        (qt_wk_didFirstVisuallyNonEmptyLayoutForFrame):
     22        (qt_wk_didStartProgress):
     23        (qt_wk_didChangeProgress):
     24        (qt_wk_didFinishProgress):
     25        (qt_wk_didBecomeUnresponsive):
     26        (qt_wk_didBecomeResponsive):
     27        (qt_wk_createNewPage):
     28        (qt_wk_showPage):
     29        (qt_wk_close):
     30        (qt_wk_runJavaScriptAlert):
     31        * UIProcess/API/qt/ClientImpl.h: Added.
     32
    1332010-07-01  Anders Carlsson  <andersca@apple.com>
    234
  • trunk/WebKit2/UIProcess/API/qt/qwkpage.cpp

    r62287 r62295  
    2222#include "qwkpage_p.h"
    2323
    24 #include "DefaultPageLoaderClientCallbacksQt.h"
     24#include "DefaultClientCallbacksQt.h"
    2525#include "LocalizedStrings.h"
    2626#include "WebEventFactory.h"
Note: See TracChangeset for help on using the changeset viewer.