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

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

Issue 2314763002: Replace collectLayerFragments() with FragmentainerIterator. (Closed)
Patch Set: code review. Created 4 years, 3 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: third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
index d3452bcc13463522bd1bbbb9d673da64e22637b8..d369fa4120afbd27926db96eb2019e56c03508a7 100644
--- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
@@ -419,12 +419,6 @@ LayoutRect LayoutMultiColumnSet::fragmentsBoundingBox(const LayoutRect& bounding
return result;
}
-void LayoutMultiColumnSet::collectLayerFragments(PaintLayerFragments& fragments, const LayoutRect& layerBoundingBox, const LayoutRect& dirtyRect)
-{
- for (const auto& group : m_fragmentainerGroups)
- group.collectLayerFragments(fragments, layerBoundingBox, dirtyRect);
-}
-
void LayoutMultiColumnSet::addOverflowFromChildren()
{
LayoutRect overflowRect;

Powered by Google App Engine
This is Rietveld 408576698