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

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

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.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h
index 87df9d581bc52d1cff650b485b1cc7c08dc759b5..00370a8f5cd7659a27467e21c56aeee0ff2ab67e 100644
--- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h
+++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h
@@ -64,6 +64,7 @@ public:
const MultiColumnFragmentainerGroup& firstFragmentainerGroup() const { return m_fragmentainerGroups.first(); }
const MultiColumnFragmentainerGroup& lastFragmentainerGroup() const { return m_fragmentainerGroups.last(); }
+ unsigned fragmentainerGroupIndexAtFlowThreadOffset(LayoutUnit) const;
MultiColumnFragmentainerGroup& fragmentainerGroupAtFlowThreadOffset(LayoutUnit flowThreadOffset)
{
return m_fragmentainerGroups[fragmentainerGroupIndexAtFlowThreadOffset(flowThreadOffset)];
@@ -161,8 +162,6 @@ public:
LayoutRect fragmentsBoundingBox(const LayoutRect& boundingBoxInFlowThread) const;
- void collectLayerFragments(PaintLayerFragments&, const LayoutRect& layerBoundingBox, const LayoutRect& dirtyRect);
-
LayoutUnit columnGap() const;
// The "CSS actual" value of column-count. This includes overflowing columns, if any.
@@ -180,8 +179,6 @@ protected:
LayoutMultiColumnSet(LayoutFlowThread*);
private:
- unsigned fragmentainerGroupIndexAtFlowThreadOffset(LayoutUnit) const;
-
void insertedIntoTree() final;
void willBeRemovedFromTree() final;

Powered by Google App Engine
This is Rietveld 408576698