Changeset 204637 in webkit
- Timestamp:
- Aug 19, 2016, 11:10:23 AM (9 years ago)
- Location:
- trunk/Source
- Files:
-
- 33 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r204631 r204637 1 2016-08-16 Simon Fraser <simon.fraser@apple.com> 2 3 Rename didLayout(LayoutMilestones) to didReachLayoutMilestone(), and related WK2 functions 4 https://bugs.webkit.org/show_bug.cgi?id=160923 5 6 Reviewed by Tim Horton. 7 8 didLayout(LayoutMilestones) -> didReachLayoutMilestone(LayoutMilestones) 9 dispatchDidLayout(LayoutMilestones) -> dispatchDidReachLayoutMilestone(LayoutMilestones) 10 11 * dom/Document.cpp: 12 (WebCore::Document::setVisualUpdatesAllowed): 13 * loader/EmptyClients.h: 14 * loader/FrameLoader.cpp: 15 (WebCore::FrameLoader::didReachLayoutMilestone): 16 (WebCore::FrameLoader::didLayout): Deleted. 17 * loader/FrameLoader.h: 18 * loader/FrameLoaderClient.h: 19 * page/FrameView.cpp: 20 (WebCore::FrameView::fireLayoutRelatedMilestonesIfNeeded): 21 (WebCore::FrameView::firePaintRelatedMilestonesIfNeeded): 22 * page/LayoutMilestones.h: Formatting 23 * page/Page.cpp: 24 (WebCore::Page::addRelevantRepaintedObject): 25 1 26 2016-08-19 Chris Dumez <cdumez@apple.com> 2 27 -
trunk/Source/WebCore/dom/Document.cpp
r204521 r204637 1306 1306 frameView->addPaintPendingMilestones(DidFirstPaintAfterSuppressedIncrementalRendering); 1307 1307 if (page->requestedLayoutMilestones() & DidFirstLayoutAfterSuppressedIncrementalRendering) 1308 frame()->loader().did Layout(DidFirstLayoutAfterSuppressedIncrementalRendering);1308 frame()->loader().didReachLayoutMilestone(DidFirstLayoutAfterSuppressedIncrementalRendering); 1309 1309 } 1310 1310 } -
trunk/Source/WebCore/loader/EmptyClients.h
r204508 r204637 301 301 void dispatchDidFinishDocumentLoad() override { } 302 302 void dispatchDidFinishLoad() override { } 303 void dispatchDid Layout(LayoutMilestones) override { }303 void dispatchDidReachLayoutMilestone(LayoutMilestones) override { } 304 304 305 305 Frame* dispatchCreatePage(const NavigationAction&) override { return nullptr; } -
trunk/Source/WebCore/loader/FrameLoader.cpp
r204472 r204637 2384 2384 } 2385 2385 2386 void FrameLoader::did Layout(LayoutMilestones milestones)2386 void FrameLoader::didReachLayoutMilestone(LayoutMilestones milestones) 2387 2387 { 2388 2388 ASSERT(m_frame.isMainFrame()); 2389 2389 2390 m_client.dispatchDid Layout(milestones);2390 m_client.dispatchDidReachLayoutMilestone(milestones); 2391 2391 } 2392 2392 -
trunk/Source/WebCore/loader/FrameLoader.h
r203720 r204637 191 191 CachePolicy subresourceCachePolicy() const; 192 192 193 void did Layout(LayoutMilestones);193 void didReachLayoutMilestone(LayoutMilestones); 194 194 void didFirstLayout(); 195 195 -
trunk/Source/WebCore/loader/FrameLoaderClient.h
r203003 r204637 175 175 176 176 virtual void dispatchDidLayout() { } 177 virtual void dispatchDid Layout(LayoutMilestones) { }177 virtual void dispatchDidReachLayoutMilestone(LayoutMilestones) { } 178 178 179 179 virtual Frame* dispatchCreatePage(const NavigationAction&) = 0; -
trunk/Source/WebCore/page/FrameView.cpp
r204320 r204637 4850 4850 4851 4851 if (milestonesAchieved && frame().isMainFrame()) 4852 frame().loader().did Layout(milestonesAchieved);4852 frame().loader().didReachLayoutMilestone(milestonesAchieved); 4853 4853 } 4854 4854 … … 4875 4875 4876 4876 if (milestonesAchieved) 4877 page->mainFrame().loader().did Layout(milestonesAchieved);4877 page->mainFrame().loader().didReachLayoutMilestone(milestonesAchieved); 4878 4878 } 4879 4879 -
trunk/Source/WebCore/page/LayoutMilestones.h
r176097 r204637 33 33 // two enums -- one for painting and one for layout. 34 34 enum LayoutMilestoneFlag { 35 DidFirstLayout = 1 << 0,36 DidFirstVisuallyNonEmptyLayout = 1 << 1,37 DidHitRelevantRepaintedObjectsAreaThreshold = 1 << 2,38 DidFirstFlushForHeaderLayer = 1 << 3,39 DidFirstLayoutAfterSuppressedIncrementalRendering = 1 << 4,40 DidFirstPaintAfterSuppressedIncrementalRendering = 1 << 5,41 ReachedSessionRestorationRenderTreeSizeThreshold = 1 << 6 // FIXME: only implemented by WK2 currently.35 DidFirstLayout = 1 << 0, 36 DidFirstVisuallyNonEmptyLayout = 1 << 1, 37 DidHitRelevantRepaintedObjectsAreaThreshold = 1 << 2, 38 DidFirstFlushForHeaderLayer = 1 << 3, 39 DidFirstLayoutAfterSuppressedIncrementalRendering = 1 << 4, 40 DidFirstPaintAfterSuppressedIncrementalRendering = 1 << 5, 41 ReachedSessionRestorationRenderTreeSizeThreshold = 1 << 6 // FIXME: only implemented by WK2 currently. 42 42 }; 43 43 -
trunk/Source/WebCore/page/Page.cpp
r204466 r204637 1730 1730 resetRelevantPaintedObjectCounter(); 1731 1731 if (Frame* frame = &mainFrame()) 1732 frame->loader().did Layout(DidHitRelevantRepaintedObjectsAreaThreshold);1732 frame->loader().didReachLayoutMilestone(DidHitRelevantRepaintedObjectsAreaThreshold); 1733 1733 } 1734 1734 } -
trunk/Source/WebKit/mac/ChangeLog
r204627 r204637 1 2016-08-16 Simon Fraser <simon.fraser@apple.com> 2 3 Rename didLayout(LayoutMilestones) to didReachLayoutMilestone(), and related WK2 functions 4 https://bugs.webkit.org/show_bug.cgi?id=160923 5 6 Reviewed by Tim Horton. 7 8 * WebCoreSupport/WebFrameLoaderClient.h: 9 * WebCoreSupport/WebFrameLoaderClient.mm: 10 (WebFrameLoaderClient::dispatchDidReachLayoutMilestone): 11 (WebFrameLoaderClient::dispatchDidLayout): Deleted. 12 1 13 2016-08-18 Daniel Bates <dabates@apple.com> 2 14 -
trunk/Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.h
r204053 r204637 117 117 void dispatchDidFinishDocumentLoad() override; 118 118 void dispatchDidFinishLoad() override; 119 void dispatchDid Layout(WebCore::LayoutMilestones) override;119 void dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones) override; 120 120 121 121 WebCore::Frame* dispatchCreatePage(const WebCore::NavigationAction&) override; -
trunk/Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm
r204462 r204637 785 785 } 786 786 787 void WebFrameLoaderClient::dispatchDid Layout(LayoutMilestones milestones)787 void WebFrameLoaderClient::dispatchDidReachLayoutMilestone(LayoutMilestones milestones) 788 788 { 789 789 WebView *webView = getWebView(m_webFrame.get()); -
trunk/Source/WebKit/win/ChangeLog
r204617 r204637 1 2016-08-16 Simon Fraser <simon.fraser@apple.com> 2 3 Rename didLayout(LayoutMilestones) to didReachLayoutMilestone(), and related WK2 functions 4 https://bugs.webkit.org/show_bug.cgi?id=160923 5 6 Reviewed by Tim Horton. 7 8 didLayout(LayoutMilestones) -> didReachLayoutMilestone(LayoutMilestones) 9 dispatchDidLayout(LayoutMilestones) -> dispatchDidReachLayoutMilestone(LayoutMilestones) 10 11 * WebCoreSupport/WebFrameLoaderClient.cpp: 12 (WebFrameLoaderClient::dispatchDidReachLayoutMilestone): 13 (WebFrameLoaderClient::dispatchDidLayout): Deleted. 14 * WebCoreSupport/WebFrameLoaderClient.h: 15 1 16 2016-08-18 Anders Carlsson <andersca@apple.com> 2 17 -
trunk/Source/WebKit/win/WebCoreSupport/WebFrameLoaderClient.cpp
r204320 r204637 470 470 } 471 471 472 void WebFrameLoaderClient::dispatchDid Layout(LayoutMilestones milestones)472 void WebFrameLoaderClient::dispatchDidReachLayoutMilestone(LayoutMilestones milestones) 473 473 { 474 474 WebView* webView = m_webFrame->webView(); -
trunk/Source/WebKit/win/WebCoreSupport/WebFrameLoaderClient.h
r202410 r204637 92 92 void dispatchDidFinishDocumentLoad() override; 93 93 void dispatchDidFinishLoad() override; 94 void dispatchDid Layout(WebCore::LayoutMilestones) override;94 void dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones) override; 95 95 96 96 void dispatchDecidePolicyForResponse(const WebCore::ResourceResponse&, const WebCore::ResourceRequest&, WebCore::FramePolicyFunction) override; -
trunk/Source/WebKit2/ChangeLog
r204627 r204637 1 2016-08-16 Simon Fraser <simon.fraser@apple.com> 2 3 Rename didLayout(LayoutMilestones) to didReachLayoutMilestone(), and related WK2 functions 4 https://bugs.webkit.org/show_bug.cgi?id=160923 5 6 Reviewed by Tim Horton. 7 8 didLayout(LayoutMilestones) -> didReachLayoutMilestone(LayoutMilestones) 9 dispatchDidLayout(LayoutMilestones) -> dispatchDidReachLayoutMilestone(LayoutMilestones) 10 11 Avoided changing functions that are exposed as API/SPI. 12 13 * UIProcess/API/APILoaderClient.h: 14 (API::LoaderClient::didReachLayoutMilestone): 15 (API::LoaderClient::didLayout): Deleted. 16 * UIProcess/API/C/WKPage.cpp: 17 (WKPageSetPageLoaderClient): 18 * UIProcess/WebPageProxy.cpp: 19 (WebKit::WebPageProxy::didLayoutForCustomContentProvider): 20 (WebKit::WebPageProxy::didReachLayoutMilestone): 21 (WebKit::WebPageProxy::didLayout): Deleted. 22 * UIProcess/WebPageProxy.h: 23 * UIProcess/WebPageProxy.messages.in: 24 * UIProcess/ios/WebPageProxyIOS.mm: 25 (WebKit::WebPageProxy::didCommitLayerTree): 26 * UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.mm: 27 (WebKit::RemoteLayerTreeDrawingAreaProxy::commitLayerTree): 28 * WebProcess/InjectedBundle/API/mac/WKWebProcessPlugInBrowserContextController.mm: 29 (didReachLayoutMilestone): 30 (setUpPageLoaderClient): 31 (didLayout): Deleted. 32 * WebProcess/InjectedBundle/InjectedBundlePageLoaderClient.cpp: 33 (WebKit::InjectedBundlePageLoaderClient::didReachLayoutMilestone): 34 (WebKit::InjectedBundlePageLoaderClient::didLayout): Deleted. 35 * WebProcess/InjectedBundle/InjectedBundlePageLoaderClient.h: 36 * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: 37 (WebKit::WebFrameLoaderClient::dispatchDidReachLayoutMilestone): 38 (WebKit::WebFrameLoaderClient::dispatchDidLayout): Deleted. 39 * WebProcess/WebCoreSupport/WebFrameLoaderClient.h: 40 * WebProcess/WebPage/DrawingArea.h: 41 (WebKit::DrawingArea::dispatchDidReachLayoutMilestone): 42 (WebKit::DrawingArea::dispatchDidLayout): Deleted. 43 * WebProcess/WebPage/WebPage.cpp: 44 (WebKit::WebPage::dispatchDidReachLayoutMilestone): 45 (WebKit::WebPage::dispatchDidLayout): Deleted. 46 * WebProcess/WebPage/WebPage.h: 47 * WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.h: 48 * WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm: 49 (WebKit::RemoteLayerTreeDrawingArea::dispatchDidReachLayoutMilestone): 50 (WebKit::RemoteLayerTreeDrawingArea::dispatchDidLayout): Deleted. 51 1 52 2016-08-18 Daniel Bates <dabates@apple.com> 2 53 -
trunk/Source/WebKit2/UIProcess/API/APILoaderClient.h
r191906 r204637 76 76 virtual void didDetectXSSForFrame(WebKit::WebPageProxy&, WebKit::WebFrameProxy&, API::Object*) { } 77 77 78 virtual void did Layout(WebKit::WebPageProxy&, WebCore::LayoutMilestones) { }78 virtual void didReachLayoutMilestone(WebKit::WebPageProxy&, WebCore::LayoutMilestones) { } 79 79 80 80 virtual bool canAuthenticateAgainstProtectionSpaceInFrame(WebKit::WebPageProxy&, WebKit::WebFrameProxy&, WebKit::WebProtectionSpace*) { return false; } -
trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp
r204284 r204637 1088 1088 } 1089 1089 1090 void did Layout(WebPageProxy& page, LayoutMilestones milestones) override1090 void didReachLayoutMilestone(WebPageProxy& page, LayoutMilestones milestones) override 1091 1091 { 1092 1092 if (!m_client.didLayout) -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r204472 r204637 3470 3470 void WebPageProxy::didLayoutForCustomContentProvider() 3471 3471 { 3472 did Layout(DidFirstLayout | DidFirstVisuallyNonEmptyLayout | DidHitRelevantRepaintedObjectsAreaThreshold);3473 } 3474 3475 void WebPageProxy::did Layout(uint32_t layoutMilestones)3472 didReachLayoutMilestone(DidFirstLayout | DidFirstVisuallyNonEmptyLayout | DidHitRelevantRepaintedObjectsAreaThreshold); 3473 } 3474 3475 void WebPageProxy::didReachLayoutMilestone(uint32_t layoutMilestones) 3476 3476 { 3477 3477 PageClientProtector protector(m_pageClient); … … 3480 3480 m_navigationClient->renderingProgressDidChange(*this, static_cast<LayoutMilestones>(layoutMilestones)); 3481 3481 else 3482 m_loaderClient->did Layout(*this, static_cast<LayoutMilestones>(layoutMilestones));3482 m_loaderClient->didReachLayoutMilestone(*this, static_cast<LayoutMilestones>(layoutMilestones)); 3483 3483 } 3484 3484 -
trunk/Source/WebKit2/UIProcess/WebPageProxy.h
r204318 r204637 1101 1101 void callAfterNextPresentationUpdate(std::function<void (CallbackBase::Error)>); 1102 1102 1103 void did Layout(uint32_t layoutMilestones);1103 void didReachLayoutMilestone(uint32_t layoutMilestones); 1104 1104 1105 1105 void didRestoreScrollPosition(); -
trunk/Source/WebKit2/UIProcess/WebPageProxy.messages.in
r203312 r204637 133 133 DidFirstLayoutForFrame(uint64_t frameID, WebKit::UserData userData) 134 134 DidFirstVisuallyNonEmptyLayoutForFrame(uint64_t frameID, WebKit::UserData userData) 135 Did Layout(uint32_t type)135 DidReachLayoutMilestone(uint32_t type) 136 136 DidReceiveTitleForFrame(uint64_t frameID, String title, WebKit::UserData userData) 137 137 DidDisplayInsecureContentForFrame(uint64_t frameID, WebKit::UserData userData) -
trunk/Source/WebKit2/UIProcess/ios/WebPageProxyIOS.mm
r203842 r204637 365 365 && exceedsRenderTreeSizeSizeThreshold(m_sessionRestorationRenderTreeSize, layerTreeTransaction.renderTreeSize())) { 366 366 m_hitRenderTreeSizeThreshold = true; 367 did Layout(WebCore::ReachedSessionRestorationRenderTreeSizeThreshold);367 didReachLayoutMilestone(WebCore::ReachedSessionRestorationRenderTreeSizeThreshold); 368 368 } 369 369 -
trunk/Source/WebKit2/UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.mm
r204057 r204637 237 237 238 238 if (auto milestones = layerTreeTransaction.newlyReachedLayoutMilestones()) 239 m_webPageProxy.did Layout(milestones);239 m_webPageProxy.didReachLayoutMilestone(milestones); 240 240 241 241 for (auto& callbackID : layerTreeTransaction.callbackIDs()) { -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/mac/WKWebProcessPlugInBrowserContextController.mm
r199040 r204637 183 183 } 184 184 185 static void did Layout(WKBundlePageRef page, WKLayoutMilestones milestones, WKTypeRef* userData, const void *clientInfo)185 static void didReachLayoutMilestone(WKBundlePageRef page, WKLayoutMilestones milestones, WKTypeRef* userData, const void *clientInfo) 186 186 { 187 187 WKWebProcessPlugInBrowserContextController *pluginContextController = (WKWebProcessPlugInBrowserContextController *)clientInfo; … … 250 250 251 251 client.didLayoutForFrame = didLayoutForFrame; 252 client.didLayout = did Layout;252 client.didLayout = didReachLayoutMilestone; 253 253 254 254 page.initializeInjectedBundleLoaderClient(&client.base); -
trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageLoaderClient.cpp
r183105 r204637 253 253 } 254 254 255 void InjectedBundlePageLoaderClient::did Layout(WebPage* page, LayoutMilestones milestones, RefPtr<API::Object>& userData)255 void InjectedBundlePageLoaderClient::didReachLayoutMilestone(WebPage* page, LayoutMilestones milestones, RefPtr<API::Object>& userData) 256 256 { 257 257 if (!m_client.didLayout) -
trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageLoaderClient.h
r170330 r204637 85 85 void didFirstVisuallyNonEmptyLayoutForFrame(WebPage*, WebFrame*, RefPtr<API::Object>& userData); 86 86 void didLayoutForFrame(WebPage*, WebFrame*); 87 void did Layout(WebPage*, WebCore::LayoutMilestones, RefPtr<API::Object>& userData);87 void didReachLayoutMilestone(WebPage*, WebCore::LayoutMilestones, RefPtr<API::Object>& userData); 88 88 89 89 void didClearWindowObjectForFrame(WebPage*, WebFrame*, WebCore::DOMWrapperWorld&); -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
r204320 r204637 567 567 } 568 568 569 void WebFrameLoaderClient::dispatchDid Layout(LayoutMilestones milestones)569 void WebFrameLoaderClient::dispatchDidReachLayoutMilestone(LayoutMilestones milestones) 570 570 { 571 571 WebPage* webPage = m_frame->page(); … … 596 596 597 597 // Send this after DidFirstLayout-specific calls since some clients expect to get those messages first. 598 webPage->dispatchDid Layout(milestones);598 webPage->dispatchDidReachLayoutMilestone(milestones); 599 599 600 600 if (milestones & DidFirstVisuallyNonEmptyLayout) { -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.h
r203003 r204637 103 103 void dispatchDidFinishLoad() override; 104 104 105 void dispatchDid Layout(WebCore::LayoutMilestones) override;105 void dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones) override; 106 106 void dispatchDidLayout() override; 107 107 -
trunk/Source/WebKit2/WebProcess/WebPage/DrawingArea.h
r204013 r204637 132 132 virtual void setShouldScaleViewToFitDocument(bool) { } 133 133 134 virtual bool dispatchDid Layout(WebCore::LayoutMilestones) { return false; }134 virtual bool dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones) { return false; } 135 135 136 136 #if PLATFORM(COCOA) -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp
r204472 r204637 5436 5436 } 5437 5437 5438 void WebPage::dispatchDid Layout(WebCore::LayoutMilestones milestones)5438 void WebPage::dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones milestones) 5439 5439 { 5440 5440 RefPtr<API::Object> userData; 5441 injectedBundleLoaderClient().did Layout(this, milestones, userData);5441 injectedBundleLoaderClient().didReachLayoutMilestone(this, milestones, userData); 5442 5442 5443 5443 // Clients should not set userData for this message, and it won't be passed through. … … 5445 5445 5446 5446 // The drawing area might want to defer dispatch of didLayout to the UI process. 5447 if (m_drawingArea && m_drawingArea->dispatchDid Layout(milestones))5448 return; 5449 5450 send(Messages::WebPageProxy::Did Layout(milestones));5447 if (m_drawingArea && m_drawingArea->dispatchDidReachLayoutMilestone(milestones)) 5448 return; 5449 5450 send(Messages::WebPageProxy::DidReachLayoutMilestone(milestones)); 5451 5451 } 5452 5452 -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h
r204318 r204637 938 938 void removeAllUserContent(); 939 939 940 void dispatchDid Layout(WebCore::LayoutMilestones);940 void dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones); 941 941 942 942 void didRestoreScrollPosition(); -
trunk/Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.h
r201441 r204637 111 111 bool adjustLayerFlushThrottling(WebCore::LayerFlushThrottleState::Flags) override; 112 112 113 bool dispatchDid Layout(WebCore::LayoutMilestones) override;113 bool dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones) override; 114 114 115 115 void updateScrolledExposedRect(); -
trunk/Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm
r202297 r204637 512 512 } 513 513 514 bool RemoteLayerTreeDrawingArea::dispatchDid Layout(WebCore::LayoutMilestones layoutMilestones)514 bool RemoteLayerTreeDrawingArea::dispatchDidReachLayoutMilestone(WebCore::LayoutMilestones layoutMilestones) 515 515 { 516 516 m_pendingNewlyReachedLayoutMilestones |= layoutMilestones;
Note:
See TracChangeset
for help on using the changeset viewer.