| 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 bdff8fd9e8b6cba2aed827e31b9e688ced6c7043..21d8adb3a96c09d573f90ceace46a4b8fe292ce8 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)
|
|
|