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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutFlowThread.cpp

Issue 2522453003: invalidateColumnSets() doesn't need to mark anything for layout. (Closed)
Patch Set: Rebaseline test expectation. Less layout. Created 4 years, 1 month 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 | « third_party/WebKit/Source/core/layout/LayoutFlowThread.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutFlowThread.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutFlowThread.cpp b/third_party/WebKit/Source/core/layout/LayoutFlowThread.cpp
index 3c03acae7c334ce369a52180dab4085b3b2340e1..b42ccdb4801d97f37fb210900c2c1eb03573aea4 100644
--- a/third_party/WebKit/Source/core/layout/LayoutFlowThread.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutFlowThread.cpp
@@ -78,18 +78,6 @@ void LayoutFlowThread::removeColumnSetFromThread(
m_multiColumnSetIntervalTree.clear();
}
-void LayoutFlowThread::invalidateColumnSets() {
- if (m_columnSetsInvalidated) {
- ASSERT(selfNeedsLayout());
- return;
- }
-
- setNeedsLayoutAndFullPaintInvalidation(
- LayoutInvalidationReason::ColumnsChanged);
-
- m_columnSetsInvalidated = true;
-}
-
void LayoutFlowThread::validateColumnSets() {
m_columnSetsInvalidated = false;
// Called to get the maximum logical width for the columnSet.
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutFlowThread.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698