Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1143)

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ActiveScriptWrappable.cpp

Issue 2045453002: Refactor WrapperTypeInfo.traceWrappers to WrapperTypeInfo.getHeader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use nicer name Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698