Index: third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.cpp b/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.cpp |
index 8227f18b50de537d0463af4c58ec480cf8fa52f4..ae7dbca5ae2b6d1f82243b10369cb3ab8820e2f1 100644 |
--- a/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.cpp |
+++ b/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.cpp |
@@ -337,7 +337,7 @@ PassRefPtr<TypeBuilder::Runtime::ExceptionDetails> V8RuntimeAgentImpl::createExc |
exceptionDetails->setColumn(message->GetStartColumn()); |
v8::Local<v8::StackTrace> messageStackTrace = message->GetStackTrace(); |
if (!messageStackTrace.IsEmpty() && messageStackTrace->GetFrameCount() > 0) |
- exceptionDetails->setStackTrace(createScriptCallStack(isolate, messageStackTrace, messageStackTrace->GetFrameCount())->buildInspectorArray()); |
+ exceptionDetails->setStack(createScriptCallStack(isolate, messageStackTrace, messageStackTrace->GetFrameCount())->buildInspectorObject()); |
return exceptionDetails.release(); |
} |