| 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 497a32436d2637522f1b6347d91ae1868e6503a5..7debe518e67eff4ffa9d9fc5000338e9bc0aaa94 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();
|
| }
|
|
|
|
|