| Index: Source/core/inspector/InspectorHeapProfilerAgent.h
|
| diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.h b/Source/core/inspector/InspectorHeapProfilerAgent.h
|
| index 92fdb43920eba3be0f3fbd88abefc4506eb629af..ac3ce51d3b7ae7dee6d5126b677d7def97e6c703 100644
|
| --- a/Source/core/inspector/InspectorHeapProfilerAgent.h
|
| +++ b/Source/core/inspector/InspectorHeapProfilerAgent.h
|
| @@ -54,6 +54,7 @@ class InspectorHeapProfilerAgent FINAL : public InspectorBaseAgent<InspectorHeap
|
| public:
|
| static PassOwnPtrWillBeRawPtr<InspectorHeapProfilerAgent> create(InjectedScriptManager*);
|
| virtual ~InspectorHeapProfilerAgent();
|
| + virtual void trace(Visitor*) OVERRIDE;
|
|
|
| virtual void collectGarbage(ErrorString*) OVERRIDE;
|
|
|
| @@ -83,11 +84,10 @@ private:
|
| void startTrackingHeapObjectsInternal(bool trackAllocations);
|
| void stopTrackingHeapObjectsInternal();
|
|
|
| - // FIXME: Oilpan: Move InjectedScriptManager to heap in follow-up CL.
|
| - InjectedScriptManager* m_injectedScriptManager;
|
| + RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
|
| InspectorFrontend::HeapProfiler* m_frontend;
|
| unsigned m_nextUserInitiatedHeapSnapshotNumber;
|
| - OwnPtr<HeapStatsUpdateTask> m_heapStatsUpdateTask;
|
| + OwnPtrWillBeMember<HeapStatsUpdateTask> m_heapStatsUpdateTask;
|
| };
|
|
|
| } // namespace blink
|
|
|