| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "wtf/PtrUtil.h" | 28 #include "wtf/PtrUtil.h" |
| 29 #include <memory> | 29 #include <memory> |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class EllipsisBox; | 33 class EllipsisBox; |
| 34 class HitTestResult; | 34 class HitTestResult; |
| 35 class LineLayoutBlockFlow; | 35 class LineLayoutBlockFlow; |
| 36 | 36 |
| 37 struct BidiStatus; | 37 struct BidiStatus; |
| 38 struct GapRects; | |
| 39 | 38 |
| 40 class RootInlineBox : public InlineFlowBox { | 39 class RootInlineBox : public InlineFlowBox { |
| 41 public: | 40 public: |
| 42 explicit RootInlineBox(LineLayoutItem); | 41 explicit RootInlineBox(LineLayoutItem); |
| 43 | 42 |
| 44 void destroy() final; | 43 void destroy() final; |
| 45 | 44 |
| 46 bool isRootInlineBox() const final { return true; } | 45 bool isRootInlineBox() const final { return true; } |
| 47 | 46 |
| 48 void detachEllipsisBox(); | 47 void detachEllipsisBox(); |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 LayoutUnit m_lineBottom; | 230 LayoutUnit m_lineBottom; |
| 232 LayoutUnit m_lineTopWithLeading; | 231 LayoutUnit m_lineTopWithLeading; |
| 233 LayoutUnit m_lineBottomWithLeading; | 232 LayoutUnit m_lineBottomWithLeading; |
| 234 LayoutUnit m_selectionBottom; | 233 LayoutUnit m_selectionBottom; |
| 235 LayoutUnit m_paginationStrut; | 234 LayoutUnit m_paginationStrut; |
| 236 }; | 235 }; |
| 237 | 236 |
| 238 } // namespace blink | 237 } // namespace blink |
| 239 | 238 |
| 240 #endif // RootInlineBox_h | 239 #endif // RootInlineBox_h |
| OLD | NEW |