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

Unified Diff: Source/core/frame/FrameView.cpp

Issue 319613004: Rename scheduleLayerUpdate now that it's only used for SVG filters. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename all the things Created 6 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/core/dom/Node.cpp ('k') | Source/core/html/HTMLPlugInElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 69e42ef47414032d9ece4f360069cc4aa9996db5..37ef124e32ea7d9ed468cb0708c684913651446e 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -2875,7 +2875,7 @@ void FrameView::updateLayoutAndStyleIfNeededRecursive()
// To avoid pushing an invalid tree for display, we have to check for this case and do another
// style recalc. The extra style recalc needs to happen after our child <iframes> were updated.
// FIXME: We shouldn't be triggering an extra style recalc in the first place.
- if (m_frame->document()->hasElementsRequiringLayerUpdate()) {
+ if (m_frame->document()->hasSVGFilterElementsRequiringLayerUpdate()) {
m_frame->document()->updateRenderTreeIfNeeded();
if (needsLayout())
@@ -2884,7 +2884,7 @@ void FrameView::updateLayoutAndStyleIfNeededRecursive()
// These asserts ensure that parent frames are clean, when child frames finished updating layout and style.
ASSERT(!needsLayout());
- ASSERT(!m_frame->document()->hasElementsRequiringLayerUpdate());
+ ASSERT(!m_frame->document()->hasSVGFilterElementsRequiringLayerUpdate());
#ifndef NDEBUG
m_frame->document()->renderView()->assertRendererLaidOut();
#endif
« no previous file with comments | « Source/core/dom/Node.cpp ('k') | Source/core/html/HTMLPlugInElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698