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

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

Issue 1696513002: DevTools: move protocol-related generators into inspector subfolder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/WorkerInspectorController.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
index 36fe681895b06d2b0890246c47a60916ee30af03..521bbe9c014e3b874b643436bc7853674b8778e1 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
@@ -42,15 +42,18 @@
namespace blink {
-class InspectorBackendDispatcher;
-class InspectorFrontend;
-class InspectorFrontendChannel;
class InstrumentingAgents;
class WorkerDebuggerAgent;
class WorkerGlobalScope;
class WorkerRuntimeAgent;
class WorkerThreadDebugger;
+namespace protocol {
+class Dispatcher;
+class Frontend;
+class FrontendChannel;
+}
+
class WorkerInspectorController final : public RefCountedWillBeGarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client {
WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorController);
@@ -80,15 +83,15 @@ private:
class PageInspectorProxy;
friend WTF::OwnedPtrDeleter<PageInspectorProxy>;
- InspectorFrontendChannel* frontendChannel() const;
+ protocol::FrontendChannel* frontendChannel() const;
RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
WorkerThreadDebugger* m_workerThreadDebugger;
InspectorAgentRegistry m_agents;
OwnPtrWillBeMember<PageInspectorProxy> m_pageInspectorProxy;
- OwnPtr<InspectorFrontend> m_frontend;
- RefPtr<InspectorBackendDispatcher> m_backendDispatcher;
+ OwnPtr<protocol::Frontend> m_frontend;
+ RefPtr<protocol::Dispatcher> m_backendDispatcher;
RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent;
OwnPtr<InspectorTaskRunner> m_inspectorTaskRunner;

Powered by Google App Engine
This is Rietveld 408576698