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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h

Issue 2151273003: [DevTools] Move browser logging from Console domain to Log domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@internals-method
Patch Set: protocol improvements 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/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

Powered by Google App Engine
This is Rietveld 408576698