| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
| 4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
| 5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 Apple Inc. All rights reserv
ed. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 Apple Inc. All rights reserv
ed. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 if (hasOverflowClip()) | 115 if (hasOverflowClip()) |
| 116 return OverflowClipDeprecatedPaintLayer; | 116 return OverflowClipDeprecatedPaintLayer; |
| 117 | 117 |
| 118 return NoDeprecatedPaintLayer; | 118 return NoDeprecatedPaintLayer; |
| 119 } | 119 } |
| 120 | 120 |
| 121 virtual void paint(const PaintInfo&, const LayoutPoint&) override; | 121 virtual void paint(const PaintInfo&, const LayoutPoint&) override; |
| 122 | 122 |
| 123 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; | 123 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; |
| 124 | 124 |
| 125 virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) ov
erride; | 125 virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle)
override; |
| 126 | 126 |
| 127 void nextSibling() const = delete; | 127 void nextSibling() const = delete; |
| 128 void previousSibling() const = delete; | 128 void previousSibling() const = delete; |
| 129 | 129 |
| 130 LayoutObjectChildList m_children; | 130 LayoutObjectChildList m_children; |
| 131 unsigned m_rowIndex : 31; | 131 unsigned m_rowIndex : 31; |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableRow, isTableRow()); | 134 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableRow, isTableRow()); |
| 135 | 135 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 151 | 151 |
| 152 inline LayoutTableRow* LayoutTableSection::lastRow() const | 152 inline LayoutTableRow* LayoutTableSection::lastRow() const |
| 153 { | 153 { |
| 154 ASSERT(children() == virtualChildren()); | 154 ASSERT(children() == virtualChildren()); |
| 155 return toLayoutTableRow(children()->lastChild()); | 155 return toLayoutTableRow(children()->lastChild()); |
| 156 } | 156 } |
| 157 | 157 |
| 158 } // namespace blink | 158 } // namespace blink |
| 159 | 159 |
| 160 #endif // LayoutTableRow_h | 160 #endif // LayoutTableRow_h |
| OLD | NEW |