| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "SVGStyledTransformableElement.h" | 29 #include "SVGStyledTransformableElement.h" |
| 30 #include "SVGTests.h" | 30 #include "SVGTests.h" |
| 31 #include "SVGURIReference.h" | 31 #include "SVGURIReference.h" |
| 32 #include "core/loader/cache/CachedSVGDocument.h" | 32 #include "core/loader/cache/CachedSVGDocument.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace WebCore { |
| 35 | 35 |
| 36 class CachedSVGDocument; | 36 class CachedSVGDocument; |
| 37 class SVGElementInstance; | 37 class SVGElementInstance; |
| 38 | 38 |
| 39 class SVGUseElement : public SVGStyledTransformableElement, | 39 class SVGUseElement FINAL : public SVGStyledTransformableElement, |
| 40 public SVGTests, | 40 public SVGTests, |
| 41 public SVGLangSpace, | 41 public SVGLangSpace, |
| 42 public SVGExternalResourcesRequired, | 42 public SVGExternalResourcesRequired, |
| 43 public SVGURIReference, | 43 public SVGURIReference, |
| 44 public CachedSVGDocumentClient { | 44 public CachedSVGDocumentClient { |
| 45 public: | 45 public: |
| 46 static PassRefPtr<SVGUseElement> create(const QualifiedName&, Document*, boo
l wasInsertedByParser); | 46 static PassRefPtr<SVGUseElement> create(const QualifiedName&, Document*, boo
l wasInsertedByParser); |
| 47 virtual ~SVGUseElement(); | 47 virtual ~SVGUseElement(); |
| 48 | 48 |
| 49 SVGElementInstance* instanceRoot(); | 49 SVGElementInstance* instanceRoot(); |
| 50 SVGElementInstance* animatedInstanceRoot() const; | 50 SVGElementInstance* animatedInstanceRoot() const; |
| 51 SVGElementInstance* instanceForShadowTreeElement(Node*) const; | 51 SVGElementInstance* instanceForShadowTreeElement(Node*) const; |
| 52 void invalidateShadowTree(); | 52 void invalidateShadowTree(); |
| 53 void invalidateDependentShadowTrees(); | 53 void invalidateDependentShadowTrees(); |
| 54 | 54 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 bool m_needsShadowTreeRecreation; | 131 bool m_needsShadowTreeRecreation; |
| 132 RefPtr<SVGElementInstance> m_targetElementInstance; | 132 RefPtr<SVGElementInstance> m_targetElementInstance; |
| 133 CachedResourceHandle<CachedSVGDocument> m_cachedDocument; | 133 CachedResourceHandle<CachedSVGDocument> m_cachedDocument; |
| 134 Timer<SVGElement> m_svgLoadEventTimer; | 134 Timer<SVGElement> m_svgLoadEventTimer; |
| 135 }; | 135 }; |
| 136 | 136 |
| 137 } | 137 } |
| 138 | 138 |
| 139 #endif | 139 #endif |
| 140 #endif | 140 #endif |
| OLD | NEW |