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

Side by Side Diff: Source/core/svg/SVGAElement.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/loader/SinkDocument.h ('k') | Source/core/svg/SVGAltGlyphDefElement.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 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 14 matching lines...) Expand all
25 #if ENABLE(SVG) 25 #if ENABLE(SVG)
26 #include "SVGAnimatedBoolean.h" 26 #include "SVGAnimatedBoolean.h"
27 #include "SVGExternalResourcesRequired.h" 27 #include "SVGExternalResourcesRequired.h"
28 #include "SVGLangSpace.h" 28 #include "SVGLangSpace.h"
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 32
33 namespace WebCore { 33 namespace WebCore {
34 34
35 class SVGAElement : public SVGStyledTransformableElement, 35 class SVGAElement FINAL : public SVGStyledTransformableElement,
36 public SVGURIReference, 36 public SVGURIReference,
37 public SVGTests, 37 public SVGTests,
38 public SVGLangSpace, 38 public SVGLangSpace,
39 public SVGExternalResourcesRequired { 39 public SVGExternalResourcesRequired {
40 public: 40 public:
41 static PassRefPtr<SVGAElement> create(const QualifiedName&, Document*); 41 static PassRefPtr<SVGAElement> create(const QualifiedName&, Document*);
42 42
43 private: 43 private:
44 SVGAElement(const QualifiedName&, Document*); 44 SVGAElement(const QualifiedName&, Document*);
45 45
46 virtual bool isValid() const { return SVGTests::isValid(); } 46 virtual bool isValid() const { return SVGTests::isValid(); }
47 47
48 virtual String title() const; 48 virtual String title() const;
49 virtual String target() const { return svgTarget(); } 49 virtual String target() const { return svgTarget(); }
(...skipping 25 matching lines...) Expand all
75 // SVGTests 75 // SVGTests
76 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); } 76 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); }
77 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); } 77 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); }
78 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); } 78 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); }
79 }; 79 };
80 80
81 } // namespace WebCore 81 } // namespace WebCore
82 82
83 #endif // ENABLE(SVG) 83 #endif // ENABLE(SVG)
84 #endif // SVGAElement_h 84 #endif // SVGAElement_h
OLDNEW
« no previous file with comments | « Source/core/loader/SinkDocument.h ('k') | Source/core/svg/SVGAltGlyphDefElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698