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

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

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
Index: third_party/WebKit/Source/core/layout/LayoutFlowThread.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutFlowThread.h b/third_party/WebKit/Source/core/layout/LayoutFlowThread.h
index 13782ec0726c5b19468394557bf76efbda264b07..594eafd95071977b9354c3932e8f6f89022d6acd 100644
--- a/third_party/WebKit/Source/core/layout/LayoutFlowThread.h
+++ b/third_party/WebKit/Source/core/layout/LayoutFlowThread.h
@@ -109,7 +109,7 @@ class CORE_EXPORT LayoutFlowThread : public LayoutBlockFlow {
bool hasColumnSets() const { return m_multiColumnSetList.size(); }
void validateColumnSets();
- void invalidateColumnSets();
+ void invalidateColumnSets() { m_columnSetsInvalidated = true; }
bool hasValidColumnSetInfo() const {
return !m_columnSetsInvalidated && !m_multiColumnSetList.isEmpty();
}

Powered by Google App Engine
This is Rietveld 408576698