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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerReportingProxy.h

Issue 2170263002: [DevTools] Pass error object when reporting exceptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: worklets! Created 4 years, 5 months 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/core/workers/WorkerReportingProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
index ce7dcf70f509731d86070a6d4719c37d434fcbfa..66eed1d638196341ab76ca77d817b41752de2d02 100644
--- a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h
@@ -47,7 +47,7 @@ class CORE_EXPORT WorkerReportingProxy {
public:
virtual ~WorkerReportingProxy() { }
- virtual void reportException(const String& errorMessage, std::unique_ptr<SourceLocation>) = 0;
+ virtual void reportException(const String& errorMessage, std::unique_ptr<SourceLocation>, int exceptionId) = 0;
virtual void reportConsoleMessage(ConsoleMessage*) = 0;
virtual void postMessageToPageInspector(const String&) = 0;

Powered by Google App Engine
This is Rietveld 408576698