Changeset 130216 in webkit
- Timestamp:
- Oct 2, 2012, 3:09:06 PM (13 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r130215 r130216 1 2012-10-02 Hugo Parente Lima <hugo.lima@openbossa.org> 2 3 [WK2] Move some tiled backing store/viewport functions from Qt to generic WebKit2 sources 4 https://bugs.webkit.org/show_bug.cgi?id=98199 5 6 Reviewed by Noam Rosenthal. 7 8 Move commitPageTransitionViewport from Qt to WebKit2. 9 10 * UIProcess/WebPageProxy.cpp: 11 (WebKit): 12 (WebKit::WebPageProxy::commitPageTransitionViewport): 13 * UIProcess/qt/WebPageProxyQt.cpp: 14 * WebProcess/WebPage/WebPage.cpp: 15 (WebKit): 16 (WebKit::WebPage::commitPageTransitionViewport): 17 * WebProcess/WebPage/WebPage.h: 18 (WebPage): 19 * WebProcess/WebPage/WebPage.messages.in: 20 * WebProcess/WebPage/qt/WebPageQt.cpp: 21 1 22 2012-10-02 Anders Carlsson <andersca@apple.com> 2 23 -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r130214 r130216 946 946 m_process->send(Messages::WebPage::SetViewportSize(size), m_pageID); 947 947 } 948 949 void WebPageProxy::commitPageTransitionViewport() 950 { 951 if (!isValid()) 952 return; 953 954 process()->send(Messages::WebPage::CommitPageTransitionViewport(), m_pageID); 955 } 948 956 #endif 949 957 -
trunk/Source/WebKit2/UIProcess/qt/WebPageProxyQt.cpp
r130033 r130216 59 59 { 60 60 notImplemented(); 61 }62 63 void WebPageProxy::commitPageTransitionViewport()64 {65 if (!isValid())66 return;67 68 process()->send(Messages::WebPage::CommitPageTransitionViewport(), m_pageID);69 61 } 70 62 -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp
r130029 r130216 3186 3186 } 3187 3187 3188 #if USE(TILED_BACKING_STORE) 3189 void WebPage::commitPageTransitionViewport() 3190 { 3191 m_drawingArea->setLayerTreeStateIsFrozen(false); 3192 } 3193 #endif 3194 3188 3195 #if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070 3189 3196 void WebPage::handleAlternativeTextUIResult(const String& result) -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h
r130029 r130216 418 418 #endif 419 419 420 #if USE(TILED_BACKING_STORE) 421 void commitPageTransitionViewport(); 422 #endif 423 420 424 #if PLATFORM(QT) 421 void commitPageTransitionViewport();422 425 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd); 423 426 void confirmComposition(const String& text, int64_t selectionStart, int64_t selectionLength); -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.messages.in
r130029 r130216 244 244 #endif 245 245 246 #if USE(TILED_BACKING_STORE) 247 CommitPageTransitionViewport() 248 #endif 249 246 250 #if PLATFORM(QT) 247 CommitPageTransitionViewport()248 251 SetComposition(WTF::String text, WTF::Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd) 249 252 ConfirmComposition(WTF::String text, int64_t selectionStart, int64_t selectionLength) -
trunk/Source/WebKit2/WebProcess/WebPage/qt/WebPageQt.cpp
r130029 r130216 309 309 } 310 310 311 void WebPage::commitPageTransitionViewport()312 {313 m_drawingArea->setLayerTreeStateIsFrozen(false);314 }315 316 311 static Frame* targetFrameForEditing(WebPage* page) 317 312 {
Note:
See TracChangeset
for help on using the changeset viewer.