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 #include "bindings/core/v8/ActiveScriptWrappable.h" | 5 #include "bindings/core/v8/ActiveScriptWrappable.h" |
6 | 6 |
7 #include "bindings/core/v8/ScriptWrappable.h" | 7 #include "bindings/core/v8/ScriptWrappable.h" |
8 #include "bindings/core/v8/ScriptWrappableVisitor.h" | 8 #include "bindings/core/v8/ScriptWrappableVisitor.h" |
9 #include "bindings/core/v8/V8PerIsolateData.h" | 9 #include "bindings/core/v8/V8PerIsolateData.h" |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 V8PerIsolateData* isolateData = V8PerIsolateData::from(isolate); | 24 V8PerIsolateData* isolateData = V8PerIsolateData::from(isolate); |
25 auto activeScriptWrappables = isolateData->activeScriptWrappables(); | 25 auto activeScriptWrappables = isolateData->activeScriptWrappables(); |
26 if (!activeScriptWrappables) { | 26 if (!activeScriptWrappables) { |
27 return; | 27 return; |
28 } | 28 } |
29 | 29 |
30 for (auto activeWrappable : *activeScriptWrappables) { | 30 for (auto activeWrappable : *activeScriptWrappables) { |
31 if (!activeWrappable->hasPendingActivity()) | 31 if (!activeWrappable->hasPendingActivity()) |
32 continue; | 32 continue; |
33 | 33 |
34 ScriptWrappable* wrappable = activeWrappable->toScriptWrappable(); | 34 activeWrappable->toScriptWrappable()->traceWrappers(visitor); |
35 wrappable->wrapperTypeInfo()->traceWrappers(visitor, wrappable); | |
36 } | 35 } |
37 } | 36 } |
38 | 37 |
39 } // namespace blink | 38 } // namespace blink |
OLD | NEW |