Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/FloatingObjects.h |
| diff --git a/third_party/WebKit/Source/core/layout/FloatingObjects.h b/third_party/WebKit/Source/core/layout/FloatingObjects.h |
| index 0fe4c6ef9b780f8d658c5f094b632a76648eaa22..d9d597c82a5d0d34fee60d3ef1e9a1c9a54cbc4c 100644 |
| --- a/third_party/WebKit/Source/core/layout/FloatingObjects.h |
| +++ b/third_party/WebKit/Source/core/layout/FloatingObjects.h |
| @@ -151,6 +151,7 @@ public: |
| bool hasLeftObjects() const { return m_leftObjectsCount > 0; } |
| bool hasRightObjects() const { return m_rightObjectsCount > 0; } |
| const FloatingObjectSet& set() const { return m_set; } |
| + FloatingObjectSet& set() { return m_set; } |
|
wkorman
2016/02/02 22:02:35
Perhaps name this mutableSet() to more explicitly
Xianzhu
2016/02/02 22:47:12
Good point. Done.
|
| void clearLineBoxTreePointers(); |
| LayoutUnit logicalLeftOffset(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit logicalHeight); |