| 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 d2f09ce0e8be1fc512c46b26735b42cd4d66a8b8..00a0a14d18ec3088e47de6ba0dcaa5385d9b8716 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| @@ -55,11 +55,10 @@ class Frontend;
|
| class FrontendChannel;
|
| }
|
|
|
| -class WorkerInspectorController final : public RefCountedWillBeGarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client, public protocol::FrontendChannel {
|
| +class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client, public protocol::FrontendChannel {
|
| WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorController);
|
| public:
|
| - static PassRefPtrWillBeRawPtr<WorkerInspectorController> create(WorkerGlobalScope*);
|
| + static RawPtr<WorkerInspectorController> create(WorkerGlobalScope*);
|
| ~WorkerInspectorController();
|
| DECLARE_TRACE();
|
|
|
| @@ -80,13 +79,13 @@ private:
|
| void sendProtocolNotification(PassOwnPtr<protocol::DictionaryValue> message) override;
|
| void flush() override;
|
|
|
| - RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
|
| - RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
|
| + Member<WorkerGlobalScope> m_workerGlobalScope;
|
| + Member<InstrumentingAgents> m_instrumentingAgents;
|
| InspectorAgentRegistry m_agents;
|
| OwnPtr<protocol::Frontend> m_frontend;
|
| OwnPtr<protocol::Dispatcher> m_backendDispatcher;
|
| - RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
|
| - RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent;
|
| + Member<WorkerDebuggerAgent> m_workerDebuggerAgent;
|
| + Member<WorkerRuntimeAgent> m_workerRuntimeAgent;
|
| };
|
|
|
| } // namespace blink
|
|
|