Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(870)

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp

Issue 2456733002: DevTools: Make WorkerThreadDebugger available for Worklets (Closed)
Patch Set: address review comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp
index 367e219ce22fe70cf6707d29617c3fbbf8b3ff3e..9f8e912c70c8015057b56370418f3d3e6ee8cf03 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp
@@ -255,7 +255,7 @@ void ServiceWorkerGlobalScope::exceptionThrown(ErrorEvent* event) {
WorkerGlobalScope::exceptionThrown(event);
if (WorkerThreadDebugger* debugger =
WorkerThreadDebugger::from(thread()->isolate()))
- debugger->exceptionThrown(event);
+ debugger->exceptionThrown(thread(), event);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698