| Index: third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| index 859478de78e6fff394a571bc20d8026ec0573fd9..b1702cac560a31833b4c46d65515f1af5786be54 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| @@ -33,12 +33,12 @@ public:
|
|
|
| void takeHeapSnapshot(ErrorString*, const Maybe<bool>& reportProgress) override;
|
|
|
| - void getObjectByHeapObjectId(ErrorString*, const String16& heapSnapshotObjectId, const Maybe<String16>& objectGroup, OwnPtr<protocol::Runtime::RemoteObject>* result) override;
|
| + void getObjectByHeapObjectId(ErrorString*, const String16& heapSnapshotObjectId, const Maybe<String16>& objectGroup, std::unique_ptr<protocol::Runtime::RemoteObject>* result) override;
|
| void addInspectedHeapObject(ErrorString*, const String16& inspectedHeapObjectId) override;
|
| void getHeapObjectId(ErrorString*, const String16& objectId, String16* heapSnapshotObjectId) override;
|
|
|
| void startSampling(ErrorString*, const Maybe<double>& samplingInterval) override;
|
| - void stopSampling(ErrorString*, OwnPtr<protocol::HeapProfiler::SamplingHeapProfile>*) override;
|
| + void stopSampling(ErrorString*, std::unique_ptr<protocol::HeapProfiler::SamplingHeapProfile>*) override;
|
|
|
| private:
|
| void startTrackingHeapObjectsInternal(bool trackAllocations);
|
|
|