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 SVGElementProxy_h | 5 #ifndef SVGElementProxy_h |
6 #define SVGElementProxy_h | 6 #define SVGElementProxy_h |
7 | 7 |
8 #include "core/loader/resource/DocumentResource.h" | 8 #include "core/loader/resource/DocumentResource.h" |
9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
10 #include "wtf/text/AtomicString.h" | 10 #include "platform/wtf/text/AtomicString.h" |
11 #include "wtf/text/WTFString.h" | 11 #include "platform/wtf/text/WTFString.h" |
12 | 12 |
13 namespace blink { | 13 namespace blink { |
14 | 14 |
15 class Document; | 15 class Document; |
16 class SVGElement; | 16 class SVGElement; |
17 class SVGResourceClient; | 17 class SVGResourceClient; |
18 class TreeScope; | 18 class TreeScope; |
19 | 19 |
20 // A proxy to an SVGElement. Allows access to an element with a certain 'id', | 20 // A proxy to an SVGElement. Allows access to an element with a certain 'id', |
21 // and provides its clients with notifications when the proxied element | 21 // and provides its clients with notifications when the proxied element |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 DECLARE_TRACE(); | 129 DECLARE_TRACE(); |
130 | 130 |
131 private: | 131 private: |
132 using ProxySet = HeapHashSet<WeakMember<SVGElementProxy>>; | 132 using ProxySet = HeapHashSet<WeakMember<SVGElementProxy>>; |
133 ProxySet element_proxies_; | 133 ProxySet element_proxies_; |
134 }; | 134 }; |
135 | 135 |
136 } // namespace blink | 136 } // namespace blink |
137 | 137 |
138 #endif // SVGElementProxy_h | 138 #endif // SVGElementProxy_h |
OLD | NEW |