| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Robert Hogan <robert@roberthogan.net> | 2 * Copyright (C) 2011 Robert Hogan <robert@roberthogan.net> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 virtual bool isTableCaption() const OVERRIDE { return true; } | 36 virtual bool isTableCaption() const OVERRIDE { return true; } |
| 37 | 37 |
| 38 virtual bool supportsPartialLayout() const OVERRIDE { return false; } | 38 virtual bool supportsPartialLayout() const OVERRIDE { return false; } |
| 39 | 39 |
| 40 virtual void insertedIntoTree() OVERRIDE; | 40 virtual void insertedIntoTree() OVERRIDE; |
| 41 virtual void willBeRemovedFromTree() OVERRIDE; | 41 virtual void willBeRemovedFromTree() OVERRIDE; |
| 42 | 42 |
| 43 RenderTable* table() const; | 43 RenderTable* table() const; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 inline RenderTableCaption* toRenderTableCaption(RenderObject* object) | 46 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableCaption, isTableCaption()); |
| 47 { | |
| 48 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); | |
| 49 return static_cast<RenderTableCaption*>(object); | |
| 50 } | |
| 51 | |
| 52 inline const RenderTableCaption* toRenderTableCaption(const RenderObject* object
) | |
| 53 { | |
| 54 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCaption()); | |
| 55 return static_cast<const RenderTableCaption*>(object); | |
| 56 } | |
| 57 | |
| 58 // This will catch anyone doing an unnecessary cast. | |
| 59 void toRenderTableCaption(const RenderTableCaption*); | |
| 60 | 47 |
| 61 } // namespace WebCore | 48 } // namespace WebCore |
| 62 | 49 |
| 63 #endif // RenderTableCaption_h | 50 #endif // RenderTableCaption_h |
| OLD | NEW |