| 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 c2d02197b1328c8cb0d5e974fd28805256301c87..cb37b57a33737baaadd9808f1f6d6c0b888d9d60 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -2895,9 +2895,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(m_frame.get(), event);
|
| }
|
|
|
| void Document::setURL(const KURL& url)
|
|
|