Index: third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h |
diff --git a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h |
index 2e96bab7a7f72f9c79d28236717f588018c5688f..e5088fe56817b5a3b0e4f6e116cb583c0c0773f2 100644 |
--- a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h |
+++ b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h |
@@ -48,19 +48,19 @@ public: |
static WorkerThreadDebugger* from(v8::Isolate*); |
void reportConsoleMessage(ExecutionContext*, ConsoleMessage*) override; |
+ int contextGroupId(ExecutionContext*) override; |
int contextGroupId(); |
void contextCreated(v8::Local<v8::Context>); |
void contextWillBeDestroyed(v8::Local<v8::Context>); |
void exceptionThrown(const String& errorMessage, std::unique_ptr<SourceLocation>); |
- void addConsoleMessage(ConsoleMessage*); |
unsigned promiseRejected(v8::Local<v8::Context>, const String16& errorMessage, v8::Local<v8::Value> exception, std::unique_ptr<SourceLocation>); |
// V8DebuggerClient implementation. |
void runMessageLoopOnPause(int contextGroupId) override; |
void quitMessageLoopOnPause() override; |
- void muteWarningsAndDeprecations() override; |
- void unmuteWarningsAndDeprecations() override; |
+ void muteWarningsAndDeprecations(int contextGroupId) override; |
+ void unmuteWarningsAndDeprecations(int contextGroupId) override; |
bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Local<v8::Context> target) override; |
v8::Local<v8::Context> ensureDefaultContextInGroup(int contextGroupId) override; |
@@ -69,7 +69,6 @@ public: |
private: |
WorkerThread* m_workerThread; |
- int m_muteConsoleCount; |
}; |
} // namespace blink |