| 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 0673f38ec908512e9d358f3f3f89462f79700191..d506a4c28c7f858ef35acf374727492a806f4edb 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| @@ -29,19 +29,19 @@ public:
|
| void collectGarbage(ErrorString*) override;
|
|
|
| void enable(ErrorString*) override;
|
| - void startTrackingHeapObjects(ErrorString*, const bool* trackAllocations) override;
|
| - void stopTrackingHeapObjects(ErrorString*, const bool* reportProgress) override;
|
| + void startTrackingHeapObjects(ErrorString*, const protocol::TypeBuilder::OptionalValue<bool>& trackAllocations) override;
|
| + void stopTrackingHeapObjects(ErrorString*, const protocol::TypeBuilder::OptionalValue<bool>& reportProgress) override;
|
|
|
| void disable(ErrorString*) override;
|
|
|
| - void takeHeapSnapshot(ErrorString*, const bool* reportProgress) override;
|
| + void takeHeapSnapshot(ErrorString*, const protocol::TypeBuilder::OptionalValue<bool>& reportProgress) override;
|
|
|
| - void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<protocol::TypeBuilder::Runtime::RemoteObject>& result) override;
|
| + void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const protocol::TypeBuilder::OptionalValue<String>& objectGroup, OwnPtr<protocol::TypeBuilder::Runtime::RemoteObject>* result) override;
|
| void addInspectedHeapObject(ErrorString*, const String& inspectedHeapObjectId) override;
|
| void getHeapObjectId(ErrorString*, const String& objectId, String* heapSnapshotObjectId) override;
|
|
|
| void startSampling(ErrorString*) override;
|
| - void stopSampling(ErrorString*, RefPtr<protocol::TypeBuilder::HeapProfiler::SamplingHeapProfile>&) override;
|
| + void stopSampling(ErrorString*, OwnPtr<protocol::TypeBuilder::HeapProfiler::SamplingHeapProfile>*) override;
|
|
|
| void requestHeapStatsUpdate() override;
|
|
|
|
|