| Index: Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.cpp b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| index 1e556282bd717a59ae0bc5cb67424bf9a67a7c7f..b41c3bd10367192bac212c1c52b31db880200120 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)
|
|
|