| 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;
|
| };
|
|
|