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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp

Issue 1966743004: Move tracking of ActiveScriptWrappables to V8PerIsolateData. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lazy creation of map Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
index ceda1a8261c8f724b16dc2c785fad7624250efde..d090de93fd1ebaafaeb2b608b9f715d5c3ace6ee 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
@@ -20,7 +20,7 @@ ScriptWrappableVisitor::~ScriptWrappableVisitor()
void ScriptWrappableVisitor::TracePrologue()
{
m_tracingInProgress = true;
- ActiveScriptWrappable::traceActiveScriptWrappables(this);
+ ActiveScriptWrappable::traceActiveScriptWrappables(m_isolate, this);
}
void ScriptWrappableVisitor::TraceEpilogue()

Powered by Google App Engine
This is Rietveld 408576698