| 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/fetch/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 "wtf/text/AtomicString.h" |
| 11 #include "wtf/text/WTFString.h" | 11 #include "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; |
| (...skipping 110 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 m_elementProxies; | 133 ProxySet m_elementProxies; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace blink | 136 } // namespace blink |
| 137 | 137 |
| 138 #endif // SVGElementProxy_h | 138 #endif // SVGElementProxy_h |
| OLD | NEW |