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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.h

Issue 2201623002: [DevTools] Move WorkerInspectorController to WorkerThread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@can-execute-scripts
Patch Set: rebased Created 4 years, 4 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/workers/WorkerGlobalScope.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
index 95fe2d45695d3b91f8972b4066c3258214e93d5a..9e3e4125f5ecdc0a662efa310ee6852954f9d6c0 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
@@ -52,7 +52,6 @@ class ConsoleMessageStorage;
class ExceptionState;
class V8AbstractEventListener;
class WorkerClients;
-class WorkerInspectorController;
class WorkerLocation;
class WorkerNavigator;
class WorkerThread;
@@ -128,7 +127,6 @@ public:
WorkerSettings* workerSettings() const { return m_workerSettings.get(); }
WorkerOrWorkletScriptController* scriptController() final { return m_scriptController.get(); }
- WorkerInspectorController* workerInspectorController() { return m_workerInspectorController.get(); }
WorkerClients* clients() { return m_workerClients.get(); }
ConsoleMessageStorage* consoleMessageStorage() { return m_consoleMessageStorage.get(); }
@@ -168,7 +166,6 @@ private:
Member<WorkerOrWorkletScriptController> m_scriptController;
WorkerThread* m_thread;
- Member<WorkerInspectorController> m_workerInspectorController;
bool m_closing;
Member<WorkerEventQueue> m_eventQueue;

Powered by Google App Engine
This is Rietveld 408576698