Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.cpp

Issue 2322073006: Turn off the old compositing path for SPv2. (Closed)
Patch Set: none Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index e2c21cc952e1a42bf5d9c046f4bdd8f383304559..e472350b6590e63058ff8d1cf82c8a652e777e1e 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -3523,7 +3523,7 @@ IntSize WebViewImpl::contentsSize() const
WebSize WebViewImpl::contentsPreferredMinimumSize()
{
if (mainFrameImpl())
- mainFrameImpl()->frame()->view()->updateLifecycleToCompositingCleanPlusScrolling();
+ mainFrameImpl()->frame()->view()->updateAllLifecyclePhasesExceptPaint();
Document* document = m_page->mainFrame()->isLocalFrame() ? m_page->deprecatedLocalMainFrame()->document() : nullptr;
if (!document || document->layoutViewItem().isNull() || !document->documentElement() || !document->documentElement()->layoutBox())

Powered by Google App Engine
This is Rietveld 408576698