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

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

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/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 1215c23595c4478f7d675e7ed5792f2bca7767b1..73f1c21301bedf73500055e394d7bbb91b92e568 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -2896,9 +2896,9 @@ EventTarget* Document::errorEventTarget()
return domWindow();
}
-void Document::exceptionThrown(const String& errorMessage, std::unique_ptr<SourceLocation> location)
+void Document::exceptionThrown(ErrorEvent* event)
{
- MainThreadDebugger::instance()->exceptionThrown(m_frame.get(), errorMessage, std::move(location));
+ MainThreadDebugger::instance()->exceptionThrown(this, event);
}
void Document::setURL(const KURL& url)
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.h ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698