OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SVGResourceClient_h | 5 #ifndef SVGResourceClient_h |
6 #define SVGResourceClient_h | 6 #define SVGResourceClient_h |
7 | 7 |
8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
9 #include "core/fetch/DocumentResource.h" | 9 #include "core/fetch/DocumentResource.h" |
| 10 #include "core/svg/SVGFilterElement.h" |
10 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
11 | 12 |
12 namespace blink { | 13 namespace blink { |
13 | 14 |
14 class TreeScope; | 15 class Document; |
| 16 class FilterOperations; |
15 | 17 |
16 class CORE_EXPORT SVGResourceClient : public DocumentResourceClient { | 18 class CORE_EXPORT SVGResourceClient : public DocumentResourceClient { |
| 19 USING_PRE_FINALIZER(SVGResourceClient, clearFilterReferences); |
| 20 |
17 public: | 21 public: |
18 virtual ~SVGResourceClient() {} | 22 SVGResourceClient(); |
| 23 ~SVGResourceClient() override; |
| 24 void addFilterReferences(const FilterOperations&, const Document&); |
| 25 void clearFilterReferences(); |
19 | 26 |
20 virtual TreeScope* treeScope() = 0; | 27 virtual void filterNeedsInvalidation() = 0; |
21 | 28 |
22 virtual void resourceContentChanged() = 0; | 29 void filterWillBeDestroyed(SVGFilterElement*); |
23 virtual void resourceElementChanged() = 0; | |
24 | 30 |
25 protected: | 31 void notifyFinished(Resource*) override; |
26 SVGResourceClient() {} | 32 String debugName() const override { return "SVGResourceClient"; } |
27 | 33 |
28 String debugName() const override { return "SVGResourceClient"; } | 34 DECLARE_TRACE(); |
29 void notifyFinished(Resource*) override { resourceElementChanged(); } | 35 |
| 36 private: |
| 37 HeapHashSet<WeakMember<SVGFilterElement>> m_internalFilterReferences; |
| 38 HeapVector<Member<DocumentResource>> m_externalFilterReferences; |
30 }; | 39 }; |
31 | 40 |
32 } // namespace blink | 41 } // namespace blink |
33 | 42 |
34 #endif // SVGResourceClient_h | 43 #endif // SVGResourceClient_h |
OLD | NEW |