Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: Source/core/svg/SVGUseElement.h

Issue 14022022: FINALizing of the Node hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Action review comments. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGTitleElement.h ('k') | Source/core/svg/SVGVKernElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/svg/SVGTitleElement.h ('k') | Source/core/svg/SVGVKernElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698