| Index: third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h b/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| index d223537f4a85c6e5cd4cb0a59bda626a72ad5edd..d37ae455463fe27bc121d35274a1840026eee5a8 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerThreadTestHelper.h
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "bindings/core/v8/ScriptCallStack.h"
|
| +#include "bindings/core/v8/SourceLocation.h"
|
| #include "bindings/core/v8/V8CacheOptions.h"
|
| #include "bindings/core/v8/V8GCController.h"
|
| #include "core/frame/csp/ContentSecurityPolicy.h"
|
| @@ -53,7 +53,7 @@ public:
|
| MockWorkerReportingProxy() { }
|
| ~MockWorkerReportingProxy() override { }
|
|
|
| - MOCK_METHOD5(reportException, void(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL, int exceptionId));
|
| + MOCK_METHOD2(reportException, void(const String& errorMessage, PassOwnPtr<SourceLocation>));
|
| MOCK_METHOD1(reportConsoleMessage, void(ConsoleMessage*));
|
| MOCK_METHOD1(postMessageToPageInspector, void(const String&));
|
| MOCK_METHOD0(postWorkerConsoleAgentEnabled, void());
|
| @@ -148,7 +148,7 @@ public:
|
| return EventTargetNames::DedicatedWorkerGlobalScope;
|
| }
|
|
|
| - void logExceptionToConsole(const String&, int, const String&, int, int, PassRefPtr<ScriptCallStack>) override
|
| + void logExceptionToConsole(const String&, PassOwnPtr<SourceLocation>) override
|
| {
|
| }
|
|
|
|
|