Index: Source/core/inspector/JavaScriptCallFrame.cpp |
diff --git a/Source/core/inspector/JavaScriptCallFrame.cpp b/Source/core/inspector/JavaScriptCallFrame.cpp |
index c52ebe7757712c7bbf4550ae10425d1d1df64a5d..4d62b5673ebbd9ec41ba33dede9436c153b4b18f 100644 |
--- a/Source/core/inspector/JavaScriptCallFrame.cpp |
+++ b/Source/core/inspector/JavaScriptCallFrame.cpp |
@@ -180,4 +180,9 @@ ScriptValue JavaScriptCallFrame::setVariableValue(ScriptState* scriptState, int |
return ScriptValue(scriptState, setVariableValueFunction->Call(callFrame, WTF_ARRAY_LENGTH(argv), argv)); |
} |
+void JavaScriptCallFrame::trace(Visitor* visitor) |
+{ |
+ visitor->trace(m_caller); |
+} |
+ |
} // namespace WebCore |