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

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

Issue 2003433004: Remove dependency from ConsoleMessage to workers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1999463002
Patch Set: messageN Created 4 years, 7 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/PageConsoleAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/PageConsoleAgent.h b/third_party/WebKit/Source/core/inspector/PageConsoleAgent.h
index 666eb8adcb4f099f791e5fba0d618e1b6543bd8a..076700f1c8eb5e63ae08a18fc1e82b197441f876 100644
--- a/third_party/WebKit/Source/core/inspector/PageConsoleAgent.h
+++ b/third_party/WebKit/Source/core/inspector/PageConsoleAgent.h
@@ -41,8 +41,6 @@ class ConsoleMessage;
class ConsoleMessageStorage;
class InspectedFrames;
class InspectorDOMAgent;
-class WorkerInspectorProxy;
-class WorkerGlobalScopeProxy;
class CORE_EXPORT PageConsoleAgent final : public InspectorConsoleAgent {
WTF_MAKE_NONCOPYABLE(PageConsoleAgent);
@@ -54,9 +52,6 @@ public:
void enable(ErrorString*) override;
void disable(ErrorString*) override;
- void workerTerminated(WorkerInspectorProxy*);
- void workerConsoleAgentEnabled(WorkerInspectorProxy*);
-
void consoleMessagesCleared() override;
protected:
@@ -70,8 +65,6 @@ private:
Member<InspectorDOMAgent> m_inspectorDOMAgent;
Member<InspectedFrames> m_inspectedFrames;
- using WorkerInspectorProxySet = HeapHashSet<Member<WorkerInspectorProxy>>;
- WorkerInspectorProxySet m_workersWithEnabledConsole;
static int s_enabledAgentCount;
};

Powered by Google App Engine
This is Rietveld 408576698