Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/line/InlineBox.h |
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.h b/third_party/WebKit/Source/core/layout/line/InlineBox.h |
| index 6a8644d0d3542109f4dc34114feac72d42329356..3743ecb06a9a19f6657e50ec1e1c4f8dc647173c 100644 |
| --- a/third_party/WebKit/Source/core/layout/line/InlineBox.h |
| +++ b/third_party/WebKit/Source/core/layout/line/InlineBox.h |
| @@ -171,8 +171,6 @@ public: |
| InlineBox* nextLeafChildIgnoringLineBreak() const; |
| InlineBox* prevLeafChildIgnoringLineBreak() const; |
| - // TODO(pilgrim): This will be removed as part of the Line Layout API refactoring crbug.com/499321 |
| - LayoutObject& layoutObject() const { return m_layoutObject; } |
| LineLayoutItem lineLayoutItem() const { return LineLayoutItem(&m_layoutObject); } |
| InlineFlowBox* parent() const |
| @@ -426,6 +424,8 @@ protected: |
| LayoutUnit m_logicalWidth; |
| private: |
| + LayoutObject& layoutObject() const { return m_layoutObject; } |
|
leviw_travelin_and_unemployed
2016/02/11 21:35:02
woohoo :D
|
| + |
| InlineBoxBitfields m_bitfields; |
| #if ENABLE(ASSERT) |