| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #include "core/svg/SVGTreeScopeResources.h" | 5 #include "core/svg/SVGTreeScopeResources.h" |
| 6 | 6 |
| 7 #include "core/dom/Element.h" | 7 #include "core/dom/Element.h" |
| 8 #include "core/dom/TreeScope.h" | 8 #include "core/dom/TreeScope.h" |
| 9 #include "core/layout/svg/LayoutSVGResourceContainer.h" | 9 #include "core/layout/svg/LayoutSVGResourceContainer.h" |
| 10 #include "core/layout/svg/SVGResourcesCache.h" | 10 #include "core/layout/svg/SVGResourcesCache.h" |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 client_element->BuildPendingResource(); | 222 client_element->BuildPendingResource(); |
| 223 | 223 |
| 224 ClearHasPendingResourcesIfPossible(*client_element); | 224 ClearHasPendingResourcesIfPossible(*client_element); |
| 225 } | 225 } |
| 226 } | 226 } |
| 227 | 227 |
| 228 DEFINE_TRACE(SVGTreeScopeResources) { | 228 DEFINE_TRACE(SVGTreeScopeResources) { |
| 229 visitor->Trace(pending_resources_); | 229 visitor->Trace(pending_resources_); |
| 230 visitor->Trace(tree_scope_); | 230 visitor->Trace(tree_scope_); |
| 231 } | 231 } |
| 232 } | 232 } // namespace blink |
| OLD | NEW |