| Index: third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
|
| index 1537231d6a82d9b0ad8dd44e8ec687795610e0ba..c10a85bb3cde969d2eb9cb9eb5c5ce65f11d969f 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
|
| @@ -31,9 +31,9 @@ public:
|
| virtual void disableTracing() { }
|
| };
|
|
|
| - static PassOwnPtrWillBeRawPtr<InspectorTracingAgent> create(Client* client, InspectorWorkerAgent* workerAgent, InspectedFrames* inspectedFrames)
|
| + static RawPtr<InspectorTracingAgent> create(Client* client, InspectorWorkerAgent* workerAgent, InspectedFrames* inspectedFrames)
|
| {
|
| - return adoptPtrWillBeNoop(new InspectorTracingAgent(client, workerAgent, inspectedFrames));
|
| + return (new InspectorTracingAgent(client, workerAgent, inspectedFrames));
|
| }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -58,8 +58,8 @@ private:
|
|
|
| int m_layerTreeId;
|
| Client* m_client;
|
| - RawPtrWillBeMember<InspectorWorkerAgent> m_workerAgent;
|
| - RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
|
| + Member<InspectorWorkerAgent> m_workerAgent;
|
| + Member<InspectedFrames> m_inspectedFrames;
|
| };
|
|
|
| } // namespace blink
|
|
|