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

Unified Diff: Source/core/svg/SVGDocumentExtensions.h

Issue 908243002: Move rendering/svg/RenderSVGResource* to layout/svg. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGClipPathElement.cpp ('k') | Source/core/svg/SVGDocumentExtensions.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGDocumentExtensions.h
diff --git a/Source/core/svg/SVGDocumentExtensions.h b/Source/core/svg/SVGDocumentExtensions.h
index 7d335da7ff879b7b13aaf8f61cd1cfde6bf7173b..9024357d132b39324893ee4b12d5bf5acafd8678 100644
--- a/Source/core/svg/SVGDocumentExtensions.h
+++ b/Source/core/svg/SVGDocumentExtensions.h
@@ -31,7 +31,7 @@
namespace blink {
class Document;
-class RenderSVGResourceContainer;
+class LayoutSVGResourceContainer;
class SubtreeLayoutScope;
class SVGResourcesCache;
class SVGSVGElement;
@@ -47,9 +47,9 @@ public:
void addTimeContainer(SVGSVGElement*);
void removeTimeContainer(SVGSVGElement*);
- void addResource(const AtomicString& id, RenderSVGResourceContainer*);
+ void addResource(const AtomicString& id, LayoutSVGResourceContainer*);
void removeResource(const AtomicString& id);
- RenderSVGResourceContainer* resourceById(const AtomicString& id) const;
+ LayoutSVGResourceContainer* resourceById(const AtomicString& id) const;
static void serviceOnAnimationFrame(Document&, double monotonicAnimationStartTime);
@@ -80,7 +80,7 @@ public:
private:
RawPtrWillBeMember<Document> m_document;
WillBeHeapHashSet<RawPtrWillBeMember<SVGSVGElement> > m_timeContainers; // For SVG 1.2 support this will need to be made more general.
- HashMap<AtomicString, RenderSVGResourceContainer*> m_resources;
+ HashMap<AtomicString, LayoutSVGResourceContainer*> m_resources;
WillBeHeapHashMap<AtomicString, OwnPtrWillBeMember<SVGPendingElements> > m_pendingResources; // Resources that are pending.
WillBeHeapHashMap<AtomicString, OwnPtrWillBeMember<SVGPendingElements> > m_pendingResourcesForRemoval; // Resources that are pending and scheduled for removal.
OwnPtr<SVGResourcesCache> m_resourcesCache;
« no previous file with comments | « Source/core/svg/SVGClipPathElement.cpp ('k') | Source/core/svg/SVGDocumentExtensions.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698