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

Unified Diff: Source/web/WebLocalFrameImpl.cpp

Issue 1217943010: Add a FrameView lifecycle method that just updates layout, style and compositing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | Source/web/tests/PinchViewportTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebLocalFrameImpl.cpp
diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
index 3df622c6a65f3df19209258b24f9a049d57bc149..6df148c33201bf81207124cb01dae7f0ac4a937b 100644
--- a/Source/web/WebLocalFrameImpl.cpp
+++ b/Source/web/WebLocalFrameImpl.cpp
@@ -357,7 +357,7 @@ public:
if (!frame()->document() || !frame()->document()->layoutView())
return 0;
- frame()->view()->updateLayoutAndStyleForPainting();
+ frame()->view()->updateAllLifecyclePhases();
if (!frame()->document() || !frame()->document()->layoutView())
return 0;
@@ -377,7 +377,7 @@ public:
if (!frame()->document() || !frame()->document()->layoutView())
return;
- frame()->view()->updateLayoutAndStyleForPainting();
+ frame()->view()->updateAllLifecyclePhases();
if (!frame()->document() || !frame()->document()->layoutView())
return;
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | Source/web/tests/PinchViewportTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698