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 LineLayoutBox_h |
| 6 #define LineLayoutBox_h |
| 7 |
| 8 #include "core/layout/LayoutBox.h" |
| 9 #include "core/layout/api/LineLayoutItem.h" |
| 10 #include "platform/LayoutUnit.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 class LayoutBox; |
| 15 |
| 16 class LineLayoutBox : public LineLayoutItem { |
| 17 public: |
| 18 explicit LineLayoutBox(LayoutBox* layoutBox) |
| 19 : LineLayoutItem(layoutBox) |
| 20 { |
| 21 } |
| 22 |
| 23 LineLayoutBox(const LineLayoutItem& item) |
| 24 : LineLayoutItem(item) |
| 25 { |
| 26 ASSERT(!item || item.isBox()); |
| 27 } |
| 28 |
| 29 LineLayoutBox() { } |
| 30 |
| 31 void setLogicalHeight(LayoutUnit size) |
| 32 { |
| 33 toBox()->setLogicalHeight(size); |
| 34 } |
| 35 |
| 36 LayoutUnit logicalHeight() const |
| 37 { |
| 38 return toBox()->logicalHeight(); |
| 39 } |
| 40 |
| 41 private: |
| 42 LayoutBox* toBox() |
| 43 { |
| 44 return toLayoutBox(layoutObject()); |
| 45 } |
| 46 |
| 47 const LayoutBox* toBox() const |
| 48 { |
| 49 return toLayoutBox(layoutObject()); |
| 50 } |
| 51 }; |
| 52 |
| 53 } // namespace blink |
| 54 |
| 55 #endif // LineLayoutBox_h |
OLD | NEW |