| 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 Apple Inc. All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. |
| 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 14 matching lines...) Expand all Loading... |
| 25 #ifndef RenderTableRow_h | 25 #ifndef RenderTableRow_h |
| 26 #define RenderTableRow_h | 26 #define RenderTableRow_h |
| 27 | 27 |
| 28 #include "RenderTableSection.h" | 28 #include "RenderTableSection.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 static const unsigned unsetRowIndex = 0x7FFFFFFF; | 32 static const unsigned unsetRowIndex = 0x7FFFFFFF; |
| 33 static const unsigned maxRowIndex = 0x7FFFFFFE; // 2,147,483,646 | 33 static const unsigned maxRowIndex = 0x7FFFFFFE; // 2,147,483,646 |
| 34 | 34 |
| 35 // FIXME: make FINAL once MemoryInstrumentation does not use inheritance. |
| 35 class RenderTableRow : public RenderBox { | 36 class RenderTableRow : public RenderBox { |
| 36 public: | 37 public: |
| 37 explicit RenderTableRow(Element*); | 38 explicit RenderTableRow(Element*); |
| 38 | 39 |
| 39 RenderObject* firstChild() const { ASSERT(children() == virtualChildren());
return children()->firstChild(); } | 40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren());
return children()->firstChild(); } |
| 40 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); r
eturn children()->lastChild(); } | 41 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); r
eturn children()->lastChild(); } |
| 41 | 42 |
| 42 const RenderObjectChildList* children() const { return &m_children; } | 43 const RenderObjectChildList* children() const { return &m_children; } |
| 43 RenderObjectChildList* children() { return &m_children; } | 44 RenderObjectChildList* children() { return &m_children; } |
| 44 | 45 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableRow()); | 129 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableRow()); |
| 129 return static_cast<const RenderTableRow*>(object); | 130 return static_cast<const RenderTableRow*>(object); |
| 130 } | 131 } |
| 131 | 132 |
| 132 // This will catch anyone doing an unnecessary cast. | 133 // This will catch anyone doing an unnecessary cast. |
| 133 void toRenderTableRow(const RenderTableRow*); | 134 void toRenderTableRow(const RenderTableRow*); |
| 134 | 135 |
| 135 } // namespace WebCore | 136 } // namespace WebCore |
| 136 | 137 |
| 137 #endif // RenderTableRow_h | 138 #endif // RenderTableRow_h |
| OLD | NEW |