| Index: third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.cpp
|
| index 5540da77e661d5d504a287202c19e5b98f608d8a..d6bf1968c4d205108a3db6576406ea78c385b698 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.cpp
|
| @@ -41,9 +41,9 @@ namespace ProfilerAgentState {
|
| static const char profilerEnabled[] = "profilerEnabled";
|
| }
|
|
|
| -PassOwnPtrWillBeRawPtr<InspectorProfilerAgent> InspectorProfilerAgent::create(V8Debugger* debugger, Client* client)
|
| +RawPtr<InspectorProfilerAgent> InspectorProfilerAgent::create(V8Debugger* debugger, Client* client)
|
| {
|
| - return adoptPtrWillBeNoop(new InspectorProfilerAgent(debugger, client));
|
| + return new InspectorProfilerAgent(debugger, client);
|
| }
|
|
|
| InspectorProfilerAgent::InspectorProfilerAgent(V8Debugger* debugger, Client* client)
|
|
|