| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| index 2a536717eae24a429a9156caf1d0cb887ffa5439..0be86bfb28ae52253a15850996ebac23528e4e5e 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| @@ -64,6 +64,7 @@ public:
|
| ~V8DebuggerImpl() override;
|
|
|
| static int contextId(v8::Local<v8::Context>);
|
| + static int getGroupId(v8::Local<v8::Context>);
|
|
|
| bool enabled() const;
|
|
|
| @@ -129,7 +130,6 @@ public:
|
| void didExecuteScript(v8::Local<v8::Context>) override;
|
| void idleStarted() override;
|
| void idleFinished() override;
|
| - void addConsoleMessage(int contextGroupId, MessageSource, MessageLevel, const String16& message, const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTrace>, int scriptId, const String16& requestIdentifier, const String16& workerId) override;
|
| void logToConsole(v8::Local<v8::Context>, v8::Local<v8::Value> arg1, v8::Local<v8::Value> arg2) override;
|
| void exceptionThrown(int contextGroupId, const String16& errorMessage, const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTrace>, int scriptId) override;
|
| unsigned promiseRejected(v8::Local<v8::Context>, const String16& errorMessage, v8::Local<v8::Value> exception, const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTrace>, int scriptId) override;
|
|
|