| Index: third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h b/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h
|
| index 97f02e2788b167670733f738d99b6fc0de565971..44d5d1d1257f3abfd9995cf866b4aa838b3e7380 100644
|
| --- a/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h
|
| @@ -43,9 +43,9 @@ class SecurityOrigin;
|
|
|
| class CORE_EXPORT PageRuntimeAgent final : public InspectorRuntimeAgent {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, InspectorRuntimeAgent::Client* client, V8Debugger* debugger, InspectedFrames* inspectedFrames)
|
| + static RawPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, InspectorRuntimeAgent::Client* client, V8Debugger* debugger, InspectedFrames* inspectedFrames)
|
| {
|
| - return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, client, debugger, inspectedFrames));
|
| + return (new PageRuntimeAgent(injectedScriptManager, client, debugger, inspectedFrames));
|
| }
|
| ~PageRuntimeAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -66,7 +66,7 @@ private:
|
| void reportExecutionContextCreation();
|
| void reportExecutionContext(ScriptState*, bool isPageContext, const String& origin, const String& frameId);
|
|
|
| - RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
|
| + Member<InspectedFrames> m_inspectedFrames;
|
| bool m_mainWorldContextCreated;
|
| };
|
|
|
|
|