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

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

Issue 24527003: [oilpan] Implement accept methods to trace the class hierarchy of SVGElement and all sub-classes. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 2 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 | « no previous file | Source/core/svg/SVGAltGlyphDefElement.h » ('j') | Source/core/svg/SVGElement.h » ('J')
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 23 matching lines...) Expand all
34 34
35 class SVGAElement : public SVGStyledTransformableElement, 35 class SVGAElement : 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 DEFINE_SELF_HANDLE(SVGAElement) 40 DEFINE_SELF_HANDLE(SVGAElement)
41 public: 41 public:
42 static PassRefPtr<SVGAElement> create(const QualifiedName&, const Handle<Doc ument>&); 42 static PassRefPtr<SVGAElement> create(const QualifiedName&, const Handle<Doc ument>&);
43 43
44 virtual void accept(Visitor* visitor) const OVERRIDE { SVGStyledTransformabl eElement::accept(visitor); }
45
44 private: 46 private:
45 SVGAElement(const QualifiedName&, const Handle<Document>&); 47 SVGAElement(const QualifiedName&, const Handle<Document>&);
46 48
47 virtual bool isValid() const { return SVGTests::isValid(); } 49 virtual bool isValid() const { return SVGTests::isValid(); }
48 50
49 virtual String title() const; 51 virtual String title() const;
50 virtual String target() const { return svgTarget(); } 52 virtual String target() const { return svgTarget(); }
51 53
52 bool isSupportedAttribute(const QualifiedName&); 54 bool isSupportedAttribute(const QualifiedName&);
53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 55 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
(...skipping 22 matching lines...) Expand all
76 // SVGTests 78 // SVGTests
77 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); } 79 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); }
78 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); } 80 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); }
79 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); } 81 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); }
80 }; 82 };
81 83
82 } // namespace WebCore 84 } // namespace WebCore
83 85
84 #endif // ENABLE(SVG) 86 #endif // ENABLE(SVG)
85 #endif // SVGAElement_h 87 #endif // SVGAElement_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/svg/SVGAltGlyphDefElement.h » ('j') | Source/core/svg/SVGElement.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698