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

Side by Side Diff: Source/core/svg/SVGFEImageElement.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, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007 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 * 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 28 matching lines...) Expand all
39 public SVGURIReference, 39 public SVGURIReference,
40 public SVGLangSpace, 40 public SVGLangSpace,
41 public SVGExternalResourcesRequired, 41 public SVGExternalResourcesRequired,
42 public CachedImageClient { 42 public CachedImageClient {
43 DEFINE_SELF_HANDLE(SVGFEImageElement) 43 DEFINE_SELF_HANDLE(SVGFEImageElement)
44 public: 44 public:
45 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, const Hand le<Document>&); 45 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, const Hand le<Document>&);
46 46
47 virtual ~SVGFEImageElement(); 47 virtual ~SVGFEImageElement();
48 48
49 virtual void accept(Visitor* visitor) const OVERRIDE { SVGFilterPrimitiveSta ndardAttributes::accept(visitor); }
50
49 private: 51 private:
50 SVGFEImageElement(const QualifiedName&, const Handle<Document>&); 52 SVGFEImageElement(const QualifiedName&, const Handle<Document>&);
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;
54 virtual void svgAttributeChanged(const QualifiedName&); 56 virtual void svgAttributeChanged(const QualifiedName&);
55 virtual void notifyFinished(CachedResource*); 57 virtual void notifyFinished(CachedResource*);
56 58
57 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; 59 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const;
58 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*); 60 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*);
(...skipping 11 matching lines...) Expand all
70 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq uired) 72 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq uired)
71 END_DECLARE_ANIMATED_PROPERTIES 73 END_DECLARE_ANIMATED_PROPERTIES
72 74
73 CachedResourceHandle<CachedImage> m_cachedImage; 75 CachedResourceHandle<CachedImage> m_cachedImage;
74 }; 76 };
75 77
76 } // namespace WebCore 78 } // namespace WebCore
77 79
78 #endif // ENABLE(SVG) 80 #endif // ENABLE(SVG)
79 #endif 81 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698