| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2009 Google, Inc. All rights reserved. | 4 * Copyright (C) 2009 Google, Inc. All rights reserved. |
| 5 * Copyright (C) 2009 Apple Inc. All rights reserved. | 5 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "core/rendering/svg/RenderSVGModelObject.h" | 26 #include "core/rendering/svg/RenderSVGModelObject.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class SVGElement; | 30 class SVGElement; |
| 31 | 31 |
| 32 class RenderSVGContainer : public RenderSVGModelObject { | 32 class RenderSVGContainer : public RenderSVGModelObject { |
| 33 public: | 33 public: |
| 34 explicit RenderSVGContainer(SVGElement*); | 34 explicit RenderSVGContainer(SVGElement*); |
| 35 virtual ~RenderSVGContainer(); | 35 virtual ~RenderSVGContainer(); |
| 36 virtual void trace(Visitor*) OVERRIDE; |
| 36 | 37 |
| 37 RenderObject* firstChild() const { ASSERT(children() == virtualChildren());
return children()->firstChild(); } | 38 RenderObject* firstChild() const { ASSERT(children() == virtualChildren());
return children()->firstChild(); } |
| 38 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); r
eturn children()->lastChild(); } | 39 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); r
eturn children()->lastChild(); } |
| 39 | 40 |
| 40 // If you have a RenderSVGContainer, use firstChild or lastChild instead. | 41 // If you have a RenderSVGContainer, use firstChild or lastChild instead. |
| 41 void slowFirstChild() const WTF_DELETED_FUNCTION; | 42 void slowFirstChild() const WTF_DELETED_FUNCTION; |
| 42 void slowLastChild() const WTF_DELETED_FUNCTION; | 43 void slowLastChild() const WTF_DELETED_FUNCTION; |
| 43 | 44 |
| 44 const RenderObjectChildList* children() const { return &m_children; } | 45 const RenderObjectChildList* children() const { return &m_children; } |
| 45 RenderObjectChildList* children() { return &m_children; } | 46 RenderObjectChildList* children() { return &m_children; } |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 FloatRect m_strokeBoundingBox; | 89 FloatRect m_strokeBoundingBox; |
| 89 FloatRect m_repaintBoundingBox; | 90 FloatRect m_repaintBoundingBox; |
| 90 bool m_needsBoundariesUpdate : 1; | 91 bool m_needsBoundariesUpdate : 1; |
| 91 }; | 92 }; |
| 92 | 93 |
| 93 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGContainer, isSVGContainer()); | 94 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGContainer, isSVGContainer()); |
| 94 | 95 |
| 95 } // namespace blink | 96 } // namespace blink |
| 96 | 97 |
| 97 #endif // RenderSVGContainer_h | 98 #endif // RenderSVGContainer_h |
| OLD | NEW |