| Index: third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.cpp b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.cpp
|
| index 80129d3d546136f46fb6788412a1e793e986bc38..9aaf4a3c9fe3b1232e7b9cdbf9cb689b79b0d15d 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.cpp
|
| @@ -71,6 +71,11 @@ void WorkerThreadDebugger::contextWillBeDestroyed(v8::Local<v8::Context> context
|
| debugger()->contextDestroyed(context);
|
| }
|
|
|
| +void WorkerThreadDebugger::exceptionThrown(const String& errorMessage, std::unique_ptr<SourceLocation> location)
|
| +{
|
| + debugger()->exceptionThrown(workerContextGroupId, errorMessage, location->url(), location->lineNumber(), location->columnNumber(), location->cloneStackTrace(), location->scriptId());
|
| +}
|
| +
|
| int WorkerThreadDebugger::contextGroupId()
|
| {
|
| return workerContextGroupId;
|
|
|