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

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

Issue 275543003: Don't always fully repaint on viewport resize (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index a69f23c4531626c0570f90e7a52c244fa55197f5..7a2a2694997b6975ba4c397da9da4ff76a4673f7 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -1888,7 +1888,7 @@ bool FrameView::needsLayout() const
void FrameView::setNeedsLayout()
{
if (RenderView* renderView = this->renderView())
- renderView->setNeedsLayout();
+ renderView->setNeedsLayoutWithoutForcingFullRepaint();
esprehn 2014/05/08 20:42:03 This method doesn't exist?
Xianzhu 2014/05/08 22:31:08 This CL depends on https://codereview.chromium.org
}
bool FrameView::isTransparent() const

Powered by Google App Engine
This is Rietveld 408576698