| Index: Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.cpp b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| index 033b5ee530127d421fb545bb06c3e1e408f1584f..3755c75948eeb35cc16c2a91e134379f931f70a6 100644
|
| --- a/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| +++ b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| @@ -60,9 +60,9 @@ private:
|
| Timer<HeapStatsUpdateTask> m_timer;
|
| };
|
|
|
| -PassOwnPtr<InspectorHeapProfilerAgent> InspectorHeapProfilerAgent::create(InjectedScriptManager* injectedScriptManager)
|
| +PassOwnPtrWillBeRawPtr<InspectorHeapProfilerAgent> InspectorHeapProfilerAgent::create(InjectedScriptManager* injectedScriptManager)
|
| {
|
| - return adoptPtr(new InspectorHeapProfilerAgent(injectedScriptManager));
|
| + return adoptPtrWillBeNoop(new InspectorHeapProfilerAgent(injectedScriptManager));
|
| }
|
|
|
| InspectorHeapProfilerAgent::InspectorHeapProfilerAgent(InjectedScriptManager* injectedScriptManager)
|
|
|