Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/line/LineWidth.h |
| diff --git a/third_party/WebKit/Source/core/layout/line/LineWidth.h b/third_party/WebKit/Source/core/layout/line/LineWidth.h |
| index 89fca11d2ef08692111c35649af29490169109e2..1b830e4dc13e4e686821686147f1f79829aef096 100644 |
| --- a/third_party/WebKit/Source/core/layout/line/LineWidth.h |
| +++ b/third_party/WebKit/Source/core/layout/line/LineWidth.h |
| @@ -39,7 +39,6 @@ namespace blink { |
| class FloatingObject; |
| class LineLayoutRubyRun; |
| -enum IndentTextOrNot { DoNotIndentText, IndentText }; |
| enum WhitespaceTreatment { ExcludeWhitespace, IncludeWhitespace }; |
| class LineWidth { |
| @@ -75,6 +74,7 @@ public: |
| void snapUncommittedWidth() { m_uncommittedWidth = LayoutUnit(m_uncommittedWidth).toFloat(); } |
| bool shouldIndentText() const { return m_shouldIndentText == IndentText; } |
|
Julien - ping for review
2016/01/14 16:50:34
Do we still have users of this? If so, we should p
|
| + IndentTextOrNot indentText() const { return m_shouldIndentText ; } |
| private: |
| void computeAvailableWidthFromLeftAndRight(); |