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

Side by Side Diff: Source/core/svg/SVGPatternElement.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 public SVGExternalResourcesRequired, 47 public SVGExternalResourcesRequired,
48 public SVGFitToViewBox { 48 public SVGFitToViewBox {
49 DEFINE_SELF_HANDLE(SVGPatternElement) 49 DEFINE_SELF_HANDLE(SVGPatternElement)
50 public: 50 public:
51 static PassRefPtr<SVGPatternElement> create(const QualifiedName&, const Hand le<Document>&); 51 static PassRefPtr<SVGPatternElement> create(const QualifiedName&, const Hand le<Document>&);
52 52
53 void collectPatternAttributes(PatternAttributes&) const; 53 void collectPatternAttributes(PatternAttributes&) const;
54 54
55 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope ) const; 55 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope ) const;
56 56
57 virtual void accept(Visitor* visitor) const OVERRIDE { SVGStyledElement::acc ept(visitor); }
58
57 private: 59 private:
58 SVGPatternElement(const QualifiedName&, const Handle<Document>&); 60 SVGPatternElement(const QualifiedName&, const Handle<Document>&);
59 61
60 virtual bool isValid() const { return SVGTests::isValid(); } 62 virtual bool isValid() const { return SVGTests::isValid(); }
61 virtual bool needsPendingResourceHandling() const { return false; } 63 virtual bool needsPendingResourceHandling() const { return false; }
62 64
63 bool isSupportedAttribute(const QualifiedName&); 65 bool isSupportedAttribute(const QualifiedName&);
64 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 66 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
65 virtual void svgAttributeChanged(const QualifiedName&); 67 virtual void svgAttributeChanged(const QualifiedName&);
66 virtual void childrenChanged(bool changedByParser = false, const Handle<Node >& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC ountDelta = 0); 68 virtual void childrenChanged(bool changedByParser = false, const Handle<Node >& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC ountDelta = 0);
(...skipping 19 matching lines...) Expand all
86 // SVGTests 88 // SVGTests
87 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); } 89 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); }
88 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); } 90 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); }
89 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); } 91 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); }
90 }; 92 };
91 93
92 } // namespace WebCore 94 } // namespace WebCore
93 95
94 #endif // ENABLE(SVG) 96 #endif // ENABLE(SVG)
95 #endif 97 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698