Chromium Code Reviews| 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 10 matching lines...) Expand all Loading... | |
| 21 | 21 |
| 22 void ActiveScriptWrappable::traceActiveScriptWrappables(v8::Isolate* isolate, Sc riptWrappableVisitor* visitor) | 22 void ActiveScriptWrappable::traceActiveScriptWrappables(v8::Isolate* isolate, Sc riptWrappableVisitor* visitor) |
| 23 { | 23 { |
| 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 |
| 34 activeWrappable->toScriptWrappable()->traceWrappers(visitor); | 35 auto scriptWrappable = activeWrappable->toScriptWrappable(); |
| 36 auto wrapperTypeInfo = const_cast<WrapperTypeInfo*>(scriptWrappable->wra pperTypeInfo()); | |
| 37 visitor->RegisterV8Reference(std::make_pair(wrapperTypeInfo, scriptWrapp able)); | |
|
haraken
2016/06/08 14:38:23
Would you help me understand why you need to push
Marcel Hlopko
2016/06/08 15:12:48
Here it's just for the consistency. Objects extern
| |
| 35 } | 38 } |
| 36 } | 39 } |
| 37 | 40 |
| 38 } // namespace blink | 41 } // namespace blink |
| OLD | NEW |