| Index: third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.cpp b/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.cpp
|
| index 1d605348e21831c265ecd30b9191f553acefb3be..b7205de0231cf231289f8024eae2c1121c1340a5 100644
|
| --- a/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.cpp
|
| @@ -36,9 +36,9 @@ void MainThreadWorkletGlobalScope::addConsoleMessage(ConsoleMessage* consoleMess
|
| frame()->console().addMessage(consoleMessage);
|
| }
|
|
|
| -void MainThreadWorkletGlobalScope::exceptionThrown(const String& errorMessage, std::unique_ptr<SourceLocation> location)
|
| +void MainThreadWorkletGlobalScope::exceptionThrown(ErrorEvent* event)
|
| {
|
| - MainThreadDebugger::instance()->exceptionThrown(frame(), errorMessage, std::move(location));
|
| + MainThreadDebugger::instance()->exceptionThrown(this, event);
|
| }
|
|
|
| } // namespace blink
|
|
|