| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the layout object implementation for KHTML. | 2 * This file is part of the layout object implementation for KHTML. |
| 3 * | 3 * |
| 4 * Copyright (C) 2003 Apple Computer, Inc. | 4 * Copyright (C) 2003 Apple Computer, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class FlexBoxIterator; | 30 class FlexBoxIterator; |
| 31 | 31 |
| 32 class LayoutDeprecatedFlexibleBox final : public LayoutBlock { | 32 class LayoutDeprecatedFlexibleBox final : public LayoutBlock { |
| 33 public: | 33 public: |
| 34 LayoutDeprecatedFlexibleBox(Element&); | 34 LayoutDeprecatedFlexibleBox(Element&); |
| 35 ~LayoutDeprecatedFlexibleBox() override; | 35 ~LayoutDeprecatedFlexibleBox() override; |
| 36 | 36 |
| 37 const char* name() const override { return "LayoutDeprecatedFlexibleBox"; } | 37 const char* name() const override { return "LayoutDeprecatedFlexibleBox"; } |
| 38 char objectSize() const override { return sizeof(this); } |
| 38 | 39 |
| 39 void styleWillChange(StyleDifference, const ComputedStyle& newStyle) override; | 40 void styleWillChange(StyleDifference, const ComputedStyle& newStyle) override; |
| 40 | 41 |
| 41 void layoutBlock(bool relayoutChildren) override; | 42 void layoutBlock(bool relayoutChildren) override; |
| 42 void layoutHorizontalBox(bool relayoutChildren); | 43 void layoutHorizontalBox(bool relayoutChildren); |
| 43 void layoutVerticalBox(bool relayoutChildren); | 44 void layoutVerticalBox(bool relayoutChildren); |
| 44 | 45 |
| 45 bool isDeprecatedFlexibleBox() const override { return true; } | 46 bool isDeprecatedFlexibleBox() const override { return true; } |
| 46 bool isStretchingChildren() const { return m_stretchingChildren; } | 47 bool isStretchingChildren() const { return m_stretchingChildren; } |
| 47 | 48 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 63 | 64 |
| 64 bool m_stretchingChildren; | 65 bool m_stretchingChildren; |
| 65 }; | 66 }; |
| 66 | 67 |
| 67 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutDeprecatedFlexibleBox, | 68 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutDeprecatedFlexibleBox, |
| 68 isDeprecatedFlexibleBox()); | 69 isDeprecatedFlexibleBox()); |
| 69 | 70 |
| 70 } // namespace blink | 71 } // namespace blink |
| 71 | 72 |
| 72 #endif // LayoutDeprecatedFlexibleBox_h | 73 #endif // LayoutDeprecatedFlexibleBox_h |
| OLD | NEW |