Chromium Code Reviews| Index: third_party/WebKit/Source/core/svg/SVGDocumentExtensions.h |
| diff --git a/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.h b/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.h |
| index f7168c6f4fb87c6ce45f8b2fb67e5206de4bd1b7..b045ca0f55fb10ea35232ea169f0524a6cd6f984 100644 |
| --- a/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.h |
| +++ b/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.h |
| @@ -35,6 +35,7 @@ class Document; |
| class LayoutSVGResourceContainer; |
| class SubtreeLayoutScope; |
| class SVGSVGElement; |
| +class SVGElement; |
| class Element; |
| class SVGDocumentExtensions : public NoBaseWillBeGarbageCollectedFinalized<SVGDocumentExtensions> { |
| @@ -47,6 +48,8 @@ public: |
| void addTimeContainer(SVGSVGElement*); |
| void removeTimeContainer(SVGSVGElement*); |
| + void addPendingWebAnimatedSVGElement(SVGElement&); |
|
pdr.
2015/10/21 00:47:37
Can you add a comment here?
alancutter (OOO until 2018)
2015/10/21 04:20:42
Done.
|
| + |
| void addResource(const AtomicString& id, LayoutSVGResourceContainer*); |
| void removeResource(const AtomicString& id); |
| LayoutSVGResourceContainer* resourceById(const AtomicString& id) const; |
| @@ -80,6 +83,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. |
| + WillBeHeapHashSet<RawPtrWillBeMember<SVGElement>> m_webAnimatedSVGElements; |
| 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. |