Title: [236500] trunk/Source/WebKit
Revision
236500
Author
an...@apple.com
Date
2018-09-26 05:06:11 -0700 (Wed, 26 Sep 2018)

Log Message

REGRESSION (PSON): White or Black flash occurs when process swapping on navigation on iOS
https://bugs.webkit.org/show_bug.cgi?id=189695
<rdar://problem/44551146>

Reviewed by Simon Fraser.

Freeze the layers on UI process side during process swap.

* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView _processWillChange]):

Shared work of _processWillSwap and _processDidExit.

(-[WKWebView _processWillSwap]):
(-[WKWebView _processDidExit]):

Split into two functions. Don't reset scroll position and similar when doing navigation swap.

* UIProcess/API/Cocoa/WKWebViewInternal.h:
* UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.h:
* UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.mm:
(WebKit::RemoteLayerTreeDrawingAreaProxy::RemoteLayerTreeDrawingAreaProxy):
(WebKit::RemoteLayerTreeDrawingAreaProxy::detachRemoteLayerTreeHost):

Add to way to detach RemoteLayerTreeHost from the drawing area. Inert RemoteLayerTreeHost will host
the frozen layers.

(WebKit::RemoteLayerTreeDrawingAreaProxy::commitLayerTree):
(WebKit::RemoteLayerTreeDrawingAreaProxy::updateDebugIndicator):
(WebKit::RemoteLayerTreeDrawingAreaProxy::hideContentUntilPendingUpdate):
(WebKit::RemoteLayerTreeDrawingAreaProxy::hideContentUntilAnyUpdate):
(WebKit::RemoteLayerTreeDrawingAreaProxy::prepareForAppSuspension):
(WebKit::RemoteLayerTreeDrawingAreaProxy::hasVisibleContent const):
(WebKit::RemoteLayerTreeDrawingAreaProxy::layerWithIDForTesting const):
* UIProcess/RemoteLayerTree/RemoteLayerTreeHost.h:
* UIProcess/RemoteLayerTree/RemoteLayerTreeHost.mm:
(WebKit::RemoteLayerTreeHost::RemoteLayerTreeHost):
(WebKit::RemoteLayerTreeHost::updateLayerTree):
(WebKit::RemoteLayerTreeHost::animationDidStart):
(WebKit::RemoteLayerTreeHost::animationDidEnd):
(WebKit::RemoteLayerTreeHost::detachFromDrawingArea):

Clear the DrawingArea backpointer.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::continueNavigationInNewProcess):
(WebKit::WebPageProxy::resetState):

Detach and save the current RemoteLayerTreeHost on navigation swap.

* UIProcess/WebPageProxy.h:
* UIProcess/ios/PageClientImplIOS.mm:
(WebKit::PageClientImpl::processWillSwap):

Avoid reseting the scroll position.

* UIProcess/ios/WebPageProxyIOS.mm:
(WebKit::WebPageProxy::setAcceleratedCompositingRootLayer):

Drop the frozen layers after setting the new root layer.

* UIProcess/mac/WebPageProxyMac.mm:
(WebKit::WebPageProxy::setAcceleratedCompositingRootLayer):

For completeness do this also on Mac (where remote layers are currently not used).

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (236499 => 236500)


--- trunk/Source/WebKit/ChangeLog	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/ChangeLog	2018-09-26 12:06:11 UTC (rev 236500)
@@ -1,3 +1,71 @@
+2018-09-26  Antti Koivisto  <an...@apple.com>
+
+        REGRESSION (PSON): White or Black flash occurs when process swapping on navigation on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=189695
+        <rdar://problem/44551146>
+
+        Reviewed by Simon Fraser.
+
+        Freeze the layers on UI process side during process swap.
+
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView _processWillChange]):
+
+        Shared work of _processWillSwap and _processDidExit.
+
+        (-[WKWebView _processWillSwap]):
+        (-[WKWebView _processDidExit]):
+
+        Split into two functions. Don't reset scroll position and similar when doing navigation swap.
+
+        * UIProcess/API/Cocoa/WKWebViewInternal.h:
+        * UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.h:
+        * UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.mm:
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::RemoteLayerTreeDrawingAreaProxy):
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::detachRemoteLayerTreeHost):
+
+        Add to way to detach RemoteLayerTreeHost from the drawing area. Inert RemoteLayerTreeHost will host
+        the frozen layers.
+
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::commitLayerTree):
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::updateDebugIndicator):
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::hideContentUntilPendingUpdate):
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::hideContentUntilAnyUpdate):
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::prepareForAppSuspension):
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::hasVisibleContent const):
+        (WebKit::RemoteLayerTreeDrawingAreaProxy::layerWithIDForTesting const):
+        * UIProcess/RemoteLayerTree/RemoteLayerTreeHost.h:
+        * UIProcess/RemoteLayerTree/RemoteLayerTreeHost.mm:
+        (WebKit::RemoteLayerTreeHost::RemoteLayerTreeHost):
+        (WebKit::RemoteLayerTreeHost::updateLayerTree):
+        (WebKit::RemoteLayerTreeHost::animationDidStart):
+        (WebKit::RemoteLayerTreeHost::animationDidEnd):
+        (WebKit::RemoteLayerTreeHost::detachFromDrawingArea):
+
+        Clear the DrawingArea backpointer.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::continueNavigationInNewProcess):
+        (WebKit::WebPageProxy::resetState):
+
+        Detach and save the current RemoteLayerTreeHost on navigation swap.
+
+        * UIProcess/WebPageProxy.h:
+        * UIProcess/ios/PageClientImplIOS.mm:
+        (WebKit::PageClientImpl::processWillSwap):
+
+        Avoid reseting the scroll position.
+
+        * UIProcess/ios/WebPageProxyIOS.mm:
+        (WebKit::WebPageProxy::setAcceleratedCompositingRootLayer):
+
+        Drop the frozen layers after setting the new root layer.
+
+        * UIProcess/mac/WebPageProxyMac.mm:
+        (WebKit::WebPageProxy::setAcceleratedCompositingRootLayer):
+
+        For completeness do this also on Mac (where remote layers are currently not used).
+
 2018-09-25  Ryosuke Niwa  <rn...@webkit.org>
 
         Make frame flattening an internal debug feature

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm	2018-09-26 12:06:11 UTC (rev 236500)
@@ -1654,15 +1654,11 @@
     return UIEdgeInsetsZero;
 }
 
-- (void)_processDidExit
+- (void)_processWillSwapOrDidExit
 {
-    RELEASE_LOG_IF_ALLOWED("%p -[WKWebView _processDidExit]", self);
+    // FIXME: Which ones of these need to be done in the process swap case and which ones in the exit case?
     [self _hidePasswordView];
     [self _cancelAnimatedResize];
-    [_contentView setFrame:self.bounds];
-    [_scrollView setBackgroundColor:[UIColor whiteColor]];
-    [_scrollView setContentOffset:[self _initialContentOffsetForScrollView]];
-    [_scrollView setZoomScale:1];
 
     _viewportMetaTagWidth = WebCore::ViewportArguments::ValueAuto;
     _initialScaleFactor = 1;
@@ -1695,6 +1691,25 @@
     _avoidsUnsafeArea = YES;
 }
 
+- (void)_processWillSwap
+{
+    RELEASE_LOG_IF_ALLOWED("%p -[WKWebView _processWillSwap]", self);
+    [self _processWillSwapOrDidExit];
+}
+
+- (void)_processDidExit
+{
+    RELEASE_LOG_IF_ALLOWED("%p -[WKWebView _processDidExit]", self);
+
+    [self _processWillSwapOrDidExit];
+
+    [_contentView setFrame:self.bounds];
+    [_scrollView setBackgroundColor:[UIColor whiteColor]];
+    [_scrollView setContentOffset:[self _initialContentOffsetForScrollView]];
+    [_scrollView setZoomScale:1];
+    
+}
+
 - (void)_didRelaunchProcess
 {
     RELEASE_LOG_IF_ALLOWED("%p -[WKWebView _didRelaunchProcess]", self);

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewInternal.h (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewInternal.h	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewInternal.h	2018-09-26 12:06:11 UTC (rev 236500)
@@ -82,6 +82,7 @@
 
 #if PLATFORM(IOS)
 - (void)_processDidExit;
+- (void)_processWillSwap;
 - (void)_didRelaunchProcess;
 
 - (void)_didCommitLoadForMainFrame;

Modified: trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.h (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.h	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.h	2018-09-26 12:06:11 UTC (rev 236500)
@@ -43,7 +43,8 @@
     explicit RemoteLayerTreeDrawingAreaProxy(WebPageProxy&);
     virtual ~RemoteLayerTreeDrawingAreaProxy();
 
-    const RemoteLayerTreeHost& remoteLayerTreeHost() const { return m_remoteLayerTreeHost; }
+    const RemoteLayerTreeHost& remoteLayerTreeHost() const { return *m_remoteLayerTreeHost; }
+    std::unique_ptr<RemoteLayerTreeHost> detachRemoteLayerTreeHost();
 
     void acceleratedAnimationDidStart(uint64_t layerID, const String& key, MonotonicTime startTime);
     void acceleratedAnimationDidEnd(uint64_t layerID, const String& key);
@@ -100,7 +101,7 @@
     
     void sendUpdateGeometry();
 
-    RemoteLayerTreeHost m_remoteLayerTreeHost;
+    std::unique_ptr<RemoteLayerTreeHost> m_remoteLayerTreeHost;
     bool m_isWaitingForDidUpdateGeometry { false };
     enum DidUpdateMessageState { DoesNotNeedDidUpdate, NeedsDidUpdate, MissedCommit };
     DidUpdateMessageState m_didUpdateMessageState { DoesNotNeedDidUpdate };

Modified: trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.mm (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.mm	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy.mm	2018-09-26 12:06:11 UTC (rev 236500)
@@ -107,7 +107,7 @@
 
 RemoteLayerTreeDrawingAreaProxy::RemoteLayerTreeDrawingAreaProxy(WebPageProxy& webPageProxy)
     : DrawingAreaProxy(DrawingAreaTypeRemoteLayerTree, webPageProxy)
-    , m_remoteLayerTreeHost(*this)
+    , m_remoteLayerTreeHost(std::make_unique<RemoteLayerTreeHost>(*this))
 {
 #if HAVE(IOSURFACE)
     // We don't want to pool surfaces in the UI process.
@@ -131,6 +131,14 @@
 #endif
 }
 
+
+std::unique_ptr<RemoteLayerTreeHost> RemoteLayerTreeDrawingAreaProxy::detachRemoteLayerTreeHost()
+{
+    m_remoteLayerTreeHost->detachFromDrawingArea();
+    return WTFMove(m_remoteLayerTreeHost);
+}
+
+
 #if PLATFORM(IOS)
 WKOneShotDisplayLinkHandler *RemoteLayerTreeDrawingAreaProxy::displayLinkHandler()
 {
@@ -194,11 +202,11 @@
     if (layerTreeTransaction.hasEditorState())
         m_webPageProxy.editorStateChanged(layerTreeTransaction.editorState());
 
-    if (m_remoteLayerTreeHost.updateLayerTree(layerTreeTransaction)) {
+    if (m_remoteLayerTreeHost->updateLayerTree(layerTreeTransaction)) {
         if (layerTreeTransaction.transactionID() >= m_transactionIDForUnhidingContent)
-            m_webPageProxy.setAcceleratedCompositingRootLayer(m_remoteLayerTreeHost.rootLayer());
+            m_webPageProxy.setAcceleratedCompositingRootLayer(m_remoteLayerTreeHost->rootLayer());
         else
-            m_remoteLayerTreeHost.detachRootLayer();
+            m_remoteLayerTreeHost->detachRootLayer();
     }
 
 #if ENABLE(ASYNC_SCROLLING)
@@ -329,7 +337,7 @@
 void RemoteLayerTreeDrawingAreaProxy::updateDebugIndicator(IntSize contentsSize, bool rootLayerChanged, float scale, const IntPoint& scrollPosition)
 {
     // Make sure we're the last sublayer.
-    CALayer *rootLayer = asLayer(m_remoteLayerTreeHost.rootLayer());
+    CALayer *rootLayer = asLayer(m_remoteLayerTreeHost->rootLayer());
     [m_tileMapHostLayer removeFromSuperlayer];
     [rootLayer addSublayer:m_tileMapHostLayer.get()];
 
@@ -469,22 +477,22 @@
 void RemoteLayerTreeDrawingAreaProxy::hideContentUntilPendingUpdate()
 {
     m_transactionIDForUnhidingContent = nextLayerTreeTransactionID();
-    m_remoteLayerTreeHost.detachRootLayer();
+    m_remoteLayerTreeHost->detachRootLayer();
 }
 
 void RemoteLayerTreeDrawingAreaProxy::hideContentUntilAnyUpdate()
 {
-    m_remoteLayerTreeHost.detachRootLayer();
+    m_remoteLayerTreeHost->detachRootLayer();
 }
 
 void RemoteLayerTreeDrawingAreaProxy::prepareForAppSuspension()
 {
-    m_remoteLayerTreeHost.mapAllIOSurfaceBackingStore();
+    m_remoteLayerTreeHost->mapAllIOSurfaceBackingStore();
 }
 
 bool RemoteLayerTreeDrawingAreaProxy::hasVisibleContent() const
 {
-    return m_remoteLayerTreeHost.rootLayer();
+    return m_remoteLayerTreeHost->rootLayer();
 }
 
 bool RemoteLayerTreeDrawingAreaProxy::isAlwaysOnLoggingAllowed() const
@@ -494,7 +502,7 @@
 
 LayerOrView* RemoteLayerTreeDrawingAreaProxy::layerWithIDForTesting(uint64_t layerID) const
 {
-    return m_remoteLayerTreeHost.layerWithIDForTesting(layerID);
+    return m_remoteLayerTreeHost->layerWithIDForTesting(layerID);
 }
 
 } // namespace WebKit

Modified: trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeHost.h (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeHost.h	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeHost.h	2018-09-26 12:06:11 UTC (rev 236500)
@@ -61,6 +61,7 @@
     void animationDidStart(WebCore::GraphicsLayer::PlatformLayerID, CAAnimation *, MonotonicTime startTime);
     void animationDidEnd(WebCore::GraphicsLayer::PlatformLayerID, CAAnimation *);
 
+    void detachFromDrawingArea();
     void clearLayers();
 
     // Detach the root layer; it will be reattached upon the next incoming commit.
@@ -78,11 +79,11 @@
 
     void layerWillBeRemoved(WebCore::GraphicsLayer::PlatformLayerID);
 
-    RemoteLayerTreeDrawingAreaProxy& m_drawingArea;
-    LayerOrView *m_rootLayer;
+    RemoteLayerTreeDrawingAreaProxy* m_drawingArea { nullptr };
+    LayerOrView *m_rootLayer { nullptr };
     HashMap<WebCore::GraphicsLayer::PlatformLayerID, RetainPtr<LayerOrView>> m_layers;
     HashMap<WebCore::GraphicsLayer::PlatformLayerID, RetainPtr<WKAnimationDelegate>> m_animationDelegates;
-    bool m_isDebugLayerTreeHost;
+    bool m_isDebugLayerTreeHost { false };
 };
 
 } // namespace WebKit

Modified: trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeHost.mm (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeHost.mm	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteLayerTreeHost.mm	2018-09-26 12:06:11 UTC (rev 236500)
@@ -49,12 +49,10 @@
 namespace WebKit {
 using namespace WebCore;
 
-#define RELEASE_LOG_IF_ALLOWED(...) RELEASE_LOG_IF(m_drawingArea.isAlwaysOnLoggingAllowed(), ViewState, __VA_ARGS__)
+#define RELEASE_LOG_IF_ALLOWED(...) RELEASE_LOG_IF(m_drawingArea && m_drawingArea->isAlwaysOnLoggingAllowed(), ViewState, __VA_ARGS__)
 
 RemoteLayerTreeHost::RemoteLayerTreeHost(RemoteLayerTreeDrawingAreaProxy& drawingArea)
-    : m_drawingArea(drawingArea)
-    , m_rootLayer(nullptr)
-    , m_isDebugLayerTreeHost(false)
+    : m_drawingArea(&drawingArea)
 {
 }
 
@@ -68,6 +66,9 @@
 
 bool RemoteLayerTreeHost::updateLayerTree(const RemoteLayerTreeTransaction& transaction, float indicatorScaleFactor)
 {
+    if (!m_drawingArea)
+        return false;
+
     for (const auto& createdLayer : transaction.createdLayers()) {
         const RemoteLayerTreeTransaction::LayerProperties* properties = transaction.changedLayerProperties().get(createdLayer.layerID);
         createLayer(createdLayer, properties);
@@ -91,7 +92,7 @@
     // Can't use the iOS code on macOS yet: rdar://problem/31247730
     auto layerContentsType = RemoteLayerBackingStore::LayerContentsType::IOSurface;
 #else
-    auto layerContentsType = m_drawingArea.hasDebugIndicator() ? RemoteLayerBackingStore::LayerContentsType::IOSurface : RemoteLayerBackingStore::LayerContentsType::CAMachPort;
+    auto layerContentsType = m_drawingArea->hasDebugIndicator() ? RemoteLayerBackingStore::LayerContentsType::IOSurface : RemoteLayerBackingStore::LayerContentsType::CAMachPort;
 #endif
     
     for (auto& changedLayer : transaction.changedLayerProperties()) {
@@ -160,6 +161,9 @@
 
 void RemoteLayerTreeHost::animationDidStart(WebCore::GraphicsLayer::PlatformLayerID layerID, CAAnimation *animation, MonotonicTime startTime)
 {
+    if (!m_drawingArea)
+        return;
+
     CALayer *layer = asLayer(getLayer(layerID));
     if (!layer)
         return;
@@ -173,11 +177,14 @@
     }
 
     if (!animationKey.isEmpty())
-        m_drawingArea.acceleratedAnimationDidStart(layerID, animationKey, startTime);
+        m_drawingArea->acceleratedAnimationDidStart(layerID, animationKey, startTime);
 }
 
 void RemoteLayerTreeHost::animationDidEnd(WebCore::GraphicsLayer::PlatformLayerID layerID, CAAnimation *animation)
 {
+    if (!m_drawingArea)
+        return;
+
     CALayer *layer = asLayer(getLayer(layerID));
     if (!layer)
         return;
@@ -191,9 +198,14 @@
     }
 
     if (!animationKey.isEmpty())
-        m_drawingArea.acceleratedAnimationDidEnd(layerID, animationKey);
+        m_drawingArea->acceleratedAnimationDidEnd(layerID, animationKey);
 }
 
+void RemoteLayerTreeHost::detachFromDrawingArea()
+{
+    m_drawingArea = nullptr;
+}
+
 void RemoteLayerTreeHost::clearLayers()
 {
     for (auto& idLayer : m_layers) {

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-09-26 12:06:11 UTC (rev 236500)
@@ -2507,7 +2507,7 @@
         auto transaction = m_pageLoadState.transaction();
         m_pageLoadState.setPendingAPIRequestURL(transaction, item->url());
 
-        auto itemStates = m_backForwardList-> filteredItemStates([this, targetItem = item](WebBackForwardListItem& item) {
+        auto itemStates = m_backForwardList->filteredItemStates([this, targetItem = item](WebBackForwardListItem& item) {
             if (auto* page = item.suspendedPage()) {
                 if (page->process() == m_process.ptr())
                     return false;
@@ -6017,7 +6017,16 @@
 #if PLATFORM(COCOA)
     m_scrollingPerformanceData = nullptr;
 #endif
-    m_drawingArea = nullptr;
+
+    if (m_drawingArea) {
+#if PLATFORM(COCOA)
+        if (resetStateReason == ResetStateReason::NavigationSwap && is<RemoteLayerTreeDrawingAreaProxy>(*m_drawingArea)) {
+            // Keep layers around in frozen state to avoid flashing during process swaps.
+            m_frozenRemoteLayerTreeHost = downcast<RemoteLayerTreeDrawingAreaProxy>(*m_drawingArea).detachRemoteLayerTreeHost();
+        }
+#endif
+        m_drawingArea = nullptr;
+    }
     closeOverlayedViews();
 
     if (m_inspector) {

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.h (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.h	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.h	2018-09-26 12:06:11 UTC (rev 236500)
@@ -223,6 +223,7 @@
 class NativeWebMouseEvent;
 class NativeWebWheelEvent;
 class PageClient;
+class RemoteLayerTreeHost;
 class RemoteLayerTreeScrollingPerformanceData;
 class RemoteLayerTreeTransaction;
 class RemoteScrollingCoordinatorProxy;
@@ -1861,10 +1862,12 @@
     bool m_isLoadingAlternateHTMLStringForFailingProvisionalLoad { false };
 
     std::unique_ptr<DrawingAreaProxy> m_drawingArea;
-#if ENABLE(ASYNC_SCROLLING) && PLATFORM(COCOA)
+#if PLATFORM(COCOA)
+    std::unique_ptr<RemoteLayerTreeHost> m_frozenRemoteLayerTreeHost;
+#if ENABLE(ASYNC_SCROLLING)
     std::unique_ptr<RemoteScrollingCoordinatorProxy> m_scrollingCoordinatorProxy;
 #endif
-
+#endif
     Ref<WebProcessProxy> m_process;
     Ref<WebPageGroup> m_pageGroup;
     Ref<WebPreferences> m_preferences;

Modified: trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.mm (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.mm	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.mm	2018-09-26 12:06:11 UTC (rev 236500)
@@ -211,8 +211,8 @@
 
 void PageClientImpl::processWillSwap()
 {
-    // FIXME: It didn't really exit.
-    processDidExit();
+    [m_contentView _processWillSwap];
+    [m_webView _processWillSwap];
 }
 
 void PageClientImpl::didRelaunchProcess()

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentView.h (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/ios/WKContentView.h	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentView.h	2018-09-26 12:06:11 UTC (rev 236500)
@@ -85,6 +85,7 @@
 
 - (std::unique_ptr<WebKit::DrawingAreaProxy>)_createDrawingAreaProxy;
 - (void)_processDidExit;
+- (void)_processWillSwap;
 - (void)_didRelaunchProcess;
 - (void)_setAcceleratedCompositingRootView:(UIView *)rootView;
 

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentView.mm (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/ios/WKContentView.mm	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentView.mm	2018-09-26 12:06:11 UTC (rev 236500)
@@ -521,6 +521,12 @@
     [self _hideInspectorHighlight];
 }
 
+- (void)_processWillSwap
+{
+    // FIXME: Should we do something differently?
+    [self _processDidExit];
+}
+
 - (void)_didRelaunchProcess
 {
     [self _accessibilityRegisterUIProcessTokens];

Modified: trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm	2018-09-26 12:06:11 UTC (rev 236500)
@@ -993,6 +993,7 @@
 void WebPageProxy::setAcceleratedCompositingRootLayer(LayerOrView* rootLayer)
 {
     pageClient().setAcceleratedCompositingRootLayer(rootLayer);
+    m_frozenRemoteLayerTreeHost = nullptr;
 }
 
 void WebPageProxy::showPlaybackTargetPicker(bool hasVideo, const IntRect& elementRect, WebCore::RouteSharingPolicy policy, const String& contextUID)

Modified: trunk/Source/WebKit/UIProcess/mac/WebPageProxyMac.mm (236499 => 236500)


--- trunk/Source/WebKit/UIProcess/mac/WebPageProxyMac.mm	2018-09-26 10:45:37 UTC (rev 236499)
+++ trunk/Source/WebKit/UIProcess/mac/WebPageProxyMac.mm	2018-09-26 12:06:11 UTC (rev 236500)
@@ -40,6 +40,7 @@
 #import "PageClient.h"
 #import "PageClientImplMac.h"
 #import "PluginComplexTextInputState.h"
+#import "RemoteLayerTreeHost.h"
 #import "StringUtilities.h"
 #import "TextChecker.h"
 #import "WKBrowsingContextControllerInternal.h"
@@ -458,6 +459,7 @@
 void WebPageProxy::setAcceleratedCompositingRootLayer(LayerOrView* rootLayer)
 {
     pageClient().setAcceleratedCompositingRootLayer(rootLayer);
+    m_frozenRemoteLayerTreeHost = nullptr;
 }
 
 LayerOrView* WebPageProxy::acceleratedCompositingRootLayer() const
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to