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

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

Issue 9941003: Merge 110307 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 8 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
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 22 matching lines...) Expand all
33 namespace WebCore { 33 namespace WebCore {
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 public: 40 public:
41 static PassRefPtr<SVGAElement> create(const QualifiedName&, Document*); 41 static PassRefPtr<SVGAElement> create(const QualifiedName&, Document*);
42 42
43 protected:
44 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang e = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE;
45
43 private: 46 private:
44 SVGAElement(const QualifiedName&, Document*); 47 SVGAElement(const QualifiedName&, Document*);
45 48
46 virtual bool isValid() const { return SVGTests::isValid(); } 49 virtual bool isValid() const { return SVGTests::isValid(); }
47 50
48 virtual String title() const; 51 virtual String title() const;
49 virtual String target() const { return svgTarget(); } 52 virtual String target() const { return svgTarget(); }
50 53
51 bool isSupportedAttribute(const QualifiedName&); 54 bool isSupportedAttribute(const QualifiedName&);
52 virtual void parseMappedAttribute(Attribute*); 55 virtual void parseMappedAttribute(Attribute*);
(...skipping 21 matching lines...) Expand all
74 // SVGTests 77 // SVGTests
75 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); } 78 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); }
76 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); } 79 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); }
77 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); } 80 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); }
78 }; 81 };
79 82
80 } // namespace WebCore 83 } // namespace WebCore
81 84
82 #endif // ENABLE(SVG) 85 #endif // ENABLE(SVG)
83 #endif // SVGAElement_h 86 #endif // SVGAElement_h
OLDNEW
« no previous file with comments | « LayoutTests/svg/text/text-positioning-remove-child-crash-expected.txt ('k') | Source/WebCore/svg/SVGAElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698