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

Side by Side Diff: Source/core/svg/SVGTRefElement.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/SVGSymbolElement.h ('k') | Source/core/svg/SVGTSpanElement.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, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 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 11 matching lines...) Expand all
22 #define SVGTRefElement_h 22 #define SVGTRefElement_h
23 23
24 #if ENABLE(SVG) 24 #if ENABLE(SVG)
25 #include "SVGTextPositioningElement.h" 25 #include "SVGTextPositioningElement.h"
26 #include "SVGURIReference.h" 26 #include "SVGURIReference.h"
27 27
28 namespace WebCore { 28 namespace WebCore {
29 29
30 class SVGTRefTargetEventListener; 30 class SVGTRefTargetEventListener;
31 31
32 class SVGTRefElement : public SVGTextPositioningElement, 32 class SVGTRefElement FINAL : public SVGTextPositioningElement,
33 public SVGURIReference { 33 public SVGURIReference {
34 public: 34 public:
35 static PassRefPtr<SVGTRefElement> create(const QualifiedName&, Document*); 35 static PassRefPtr<SVGTRefElement> create(const QualifiedName&, Document*);
36 36
37 private: 37 private:
38 friend class SVGTRefTargetEventListener; 38 friend class SVGTRefTargetEventListener;
39 39
40 SVGTRefElement(const QualifiedName&, Document*); 40 SVGTRefElement(const QualifiedName&, Document*);
41 virtual ~SVGTRefElement(); 41 virtual ~SVGTRefElement();
42 42
43 bool isSupportedAttribute(const QualifiedName&); 43 bool isSupportedAttribute(const QualifiedName&);
(...skipping 17 matching lines...) Expand all
61 DECLARE_ANIMATED_STRING(Href, href) 61 DECLARE_ANIMATED_STRING(Href, href)
62 END_DECLARE_ANIMATED_PROPERTIES 62 END_DECLARE_ANIMATED_PROPERTIES
63 63
64 RefPtr<SVGTRefTargetEventListener> m_targetListener; 64 RefPtr<SVGTRefTargetEventListener> m_targetListener;
65 }; 65 };
66 66
67 } // namespace WebCore 67 } // namespace WebCore
68 68
69 #endif // ENABLE(SVG) 69 #endif // ENABLE(SVG)
70 #endif 70 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGSymbolElement.h ('k') | Source/core/svg/SVGTSpanElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698