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 62b94dbc0efbf9ae006ee20eeaf645ee66023307..d337f2e89f3e066daae49c9a4e7e71a4f0aaaa16 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h |
+++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h |
@@ -170,6 +170,12 @@ public: |
const char* name() const override { return "LayoutMultiColumnSet"; } |
+ // Sets |columnBounds| to the bounds of each column rule rect's painted extent, adjusted by paint offset, |
wkorman
2016/07/01 19:32:24
|columnBounds| -> |columnRuleBounds|
chrishtr
2016/07/01 22:31:32
Done.
|
+ // before pixel snapping. Retuns true if column rules should be painted at all. |
wkorman
2016/07/01 19:32:24
Retuns -> Returns
chrishtr
2016/07/01 22:31:32
Done.
|
+ bool computeColumnRuleBounds(const LayoutPoint& paintOffset, Vector<LayoutRect>& columnRuleBounds) const; |
+ |
+ LayoutRect localOverflowRectForPaintInvalidation() const override; |
+ |
protected: |
LayoutMultiColumnSet(LayoutFlowThread*); |