OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef LineLayoutInline_h |
| 6 #define LineLayoutInline_h |
| 7 |
| 8 #include "core/layout/LayoutInline.h" |
| 9 #include "core/layout/api/LineLayoutItem.h" |
| 10 #include "platform/LayoutUnit.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 class ComputedStyle; |
| 15 class LayoutInline; |
| 16 class LayoutObject; |
| 17 |
| 18 class LineLayoutInline : public LineLayoutItem { |
| 19 public: |
| 20 explicit LineLayoutInline(LayoutInline* layoutInline) |
| 21 : LineLayoutItem(layoutInline) |
| 22 { |
| 23 } |
| 24 |
| 25 LineLayoutInline(const LineLayoutItem& item) |
| 26 : LineLayoutItem(item) |
| 27 { |
| 28 ASSERT(!item || item.isLayoutInline()); |
| 29 } |
| 30 |
| 31 LineLayoutInline() { } |
| 32 |
| 33 LineLayoutItem firstChild() const |
| 34 { |
| 35 return LineLayoutItem(toInline()->firstChild()); |
| 36 } |
| 37 |
| 38 LineLayoutItem lastChild() const |
| 39 { |
| 40 return LineLayoutItem(toInline()->lastChild()); |
| 41 } |
| 42 |
| 43 protected: |
| 44 LayoutInline* toInline() |
| 45 { |
| 46 return toLayoutInline(layoutObject()); |
| 47 } |
| 48 |
| 49 const LayoutInline* toInline() const |
| 50 { |
| 51 return toLayoutInline(layoutObject()); |
| 52 } |
| 53 |
| 54 }; |
| 55 |
| 56 } // namespace blink |
| 57 |
| 58 #endif // LineLayoutInline_h |
OLD | NEW |