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

Unified Diff: Source/core/rendering/RenderFullScreen.cpp

Issue 332543002: Rename Repaint to Paint Invalidation Part 4 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/rendering/RenderFrameSet.cpp ('k') | Source/core/rendering/RenderGrid.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderFullScreen.cpp
diff --git a/Source/core/rendering/RenderFullScreen.cpp b/Source/core/rendering/RenderFullScreen.cpp
index ab71177ce967f32354c83aa5a6577af2fbbbd8ae..9ce9810a3ac442a7ef3281001ba76b08988d68be 100644
--- a/Source/core/rendering/RenderFullScreen.cpp
+++ b/Source/core/rendering/RenderFullScreen.cpp
@@ -136,11 +136,11 @@ RenderObject* RenderFullScreen::wrapRenderer(RenderObject* object, RenderObject*
// Always just do a full layout to ensure that line boxes get deleted properly.
// Because objects moved from |parent| to |fullscreenRenderer|, we want to
// make new line boxes instead of leaving the old ones around.
- parent->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
- containingBlock->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
+ parent->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
+ containingBlock->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
}
fullscreenRenderer->addChild(object);
- fullscreenRenderer->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
+ fullscreenRenderer->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
}
ASSERT(document);
@@ -164,7 +164,7 @@ void RenderFullScreen::unwrapRenderer()
toRenderBox(child)->clearOverrideSize();
child->remove();
parent()->addChild(child, this);
- parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
+ parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
}
}
if (placeholder())
@@ -190,7 +190,7 @@ void RenderFullScreen::createPlaceholder(PassRefPtr<RenderStyle> style, const La
m_placeholder->setStyle(style);
if (parent()) {
parent()->addChild(m_placeholder, this);
- parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
+ parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
}
} else
m_placeholder->setStyle(style);
« no previous file with comments | « Source/core/rendering/RenderFrameSet.cpp ('k') | Source/core/rendering/RenderGrid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698