| Index: third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h b/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h
|
| index 2cb0d5993462223c2ede137772907cd67bd4b24a..4fcd978797642da7813faad1e59f8765f94fd692 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h
|
| @@ -41,9 +41,9 @@ class WorkerGlobalScope;
|
| class WorkerConsoleAgent final : public InspectorConsoleAgent {
|
| WTF_MAKE_NONCOPYABLE(WorkerConsoleAgent);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<WorkerConsoleAgent> create(V8RuntimeAgent* runtimeAgent, V8DebuggerAgent* debuggerAgent, WorkerGlobalScope* workerGlobalScope)
|
| + static RawPtr<WorkerConsoleAgent> create(V8RuntimeAgent* runtimeAgent, V8DebuggerAgent* debuggerAgent, WorkerGlobalScope* workerGlobalScope)
|
| {
|
| - return adoptPtrWillBeNoop(new WorkerConsoleAgent(runtimeAgent, debuggerAgent, workerGlobalScope));
|
| + return new WorkerConsoleAgent(runtimeAgent, debuggerAgent, workerGlobalScope);
|
| }
|
| ~WorkerConsoleAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -60,7 +60,7 @@ protected:
|
| private:
|
| WorkerConsoleAgent(V8RuntimeAgent*, V8DebuggerAgent*, WorkerGlobalScope*);
|
|
|
| - RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
|
| + Member<WorkerGlobalScope> m_workerGlobalScope;
|
| };
|
|
|
| } // namespace blink
|
|
|