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..b59040f82792b7ae634f250fe8521a495403c88b 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::exceptionUnhandled(const String& errorMessage, std::unique_ptr<SourceLocation> location) |
+{ |
+ debugger()->exceptionUnhandled(workerContextGroupId, errorMessage, location->url(), location->lineNumber(), location->columnNumber(), location->cloneStackTrace(), location->scriptId()); |
+} |
+ |
int WorkerThreadDebugger::contextGroupId() |
{ |
return workerContextGroupId; |