Index: src/inspector/v8-console.cc |
diff --git a/src/inspector/v8-console.cc b/src/inspector/v8-console.cc |
index 2a9281c75977360e99895fa03a6a720bac8c0225..aa4cdc11c3ba499bd86eb4cd75bcf44ca1adfcaf 100644 |
--- a/src/inspector/v8-console.cc |
+++ b/src/inspector/v8-console.cc |
@@ -261,7 +261,7 @@ void V8Console::countCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { |
String16 identifier; |
if (title.isEmpty()) { |
std::unique_ptr<V8StackTraceImpl> stackTrace = |
- V8StackTraceImpl::capture(nullptr, 0, 1); |
+ V8StackTraceImpl::capture(helper.inspector()->debugger(), 0, 1); |
if (stackTrace && !stackTrace->isEmpty()) { |
identifier = toString16(stackTrace->topSourceURL()) + ":" + |
String16::fromInteger(stackTrace->topLineNumber()); |