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

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

Issue 2141673002: [DevTools] Always send a copy of worker message through the page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit 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/InspectorSession.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorSession.h b/third_party/WebKit/Source/core/inspector/InspectorSession.h
index 3f31c00958b0359b91003d74b6ba71fda0c89dd0..8a9abbebe1af72eaa1b262f4ace23937eb2c47c7 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.h
@@ -37,7 +37,6 @@ public:
virtual void resumeStartup() { }
virtual void profilingStarted() { }
virtual void profilingStopped() { }
- virtual void consoleEnabled() { }
virtual void consoleCleared() { }
virtual ~Client() {}
};
@@ -68,7 +67,6 @@ private:
bool canExecuteScripts() override;
void profilingStarted() override;
void profilingStopped() override;
- void consoleEnabled() override;
void consoleCleared() override;
Client* m_client;

Powered by Google App Engine
This is Rietveld 408576698