| Index: Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.cpp b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| index 03a5539904dbe4927f92f59083fe299e30dd8c2c..80db8daed450ed0aeb72bdfb8743a76c83e36541 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)
|
|
|