| 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 af0e8e6449c82653497adcd366faa43a6c5d0c68..ef996512fa9ac328390eb8af95e786c006b0f2a2 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| @@ -52,15 +52,14 @@ class WorkerGlobalScope;
|
| class WorkerRuntimeAgent;
|
| class WorkerThreadDebugger;
|
|
|
| -class WorkerInspectorController final : public RefCountedWillBeGarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client {
|
| +class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client {
|
| WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorController);
|
| public:
|
| explicit WorkerInspectorController(WorkerGlobalScope*);
|
| ~WorkerInspectorController();
|
| DECLARE_TRACE();
|
|
|
| - void registerModuleAgent(PassOwnPtrWillBeRawPtr<InspectorAgent>);
|
| + void registerModuleAgent(RawPtr<InspectorAgent>);
|
| void connectFrontend();
|
| void disconnectFrontend();
|
| void restoreInspectorStateFromCookie(const String& inspectorCookie);
|
| @@ -83,16 +82,16 @@ private:
|
|
|
| InspectorFrontendChannel* frontendChannel() const;
|
|
|
| - RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
|
| - RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
|
| + Member<WorkerGlobalScope> m_workerGlobalScope;
|
| + Member<InstrumentingAgents> m_instrumentingAgents;
|
| WorkerThreadDebugger* m_workerThreadDebugger;
|
| OwnPtr<InjectedScriptManager> m_injectedScriptManager;
|
| InspectorAgentRegistry m_agents;
|
| - OwnPtrWillBeMember<PageInspectorProxy> m_pageInspectorProxy;
|
| + Member<PageInspectorProxy> m_pageInspectorProxy;
|
| OwnPtr<InspectorFrontend> m_frontend;
|
| RefPtr<InspectorBackendDispatcher> m_backendDispatcher;
|
| - RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
|
| - RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent;
|
| + Member<WorkerDebuggerAgent> m_workerDebuggerAgent;
|
| + Member<WorkerRuntimeAgent> m_workerRuntimeAgent;
|
| OwnPtr<InspectorTaskRunner> m_inspectorTaskRunner;
|
| OwnPtr<InspectorTaskRunner::IgnoreInterruptsScope> m_beforeInitlizedScope;
|
| bool m_paused;
|
|
|