Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1549)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h

Issue 1702673002: DevTools: migrate remote debugging protocol generators to jinja2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..559d6d6fda0ea05fe58263f49586c508a4c86b95 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
@@ -15,6 +15,8 @@ class V8RuntimeAgent;
typedef String ErrorString;
+using protocol::OptionalValue;
+
class V8HeapProfilerAgentImpl : public V8HeapProfilerAgent {
WTF_MAKE_NONCOPYABLE(V8HeapProfilerAgentImpl);
public:
@@ -29,19 +31,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 OptionalValue<bool>& trackAllocations) override;
+ void stopTrackingHeapObjects(ErrorString*, const OptionalValue<bool>& reportProgress) override;
void disable(ErrorString*) override;
- void takeHeapSnapshot(ErrorString*, const bool* reportProgress) override;
+ void takeHeapSnapshot(ErrorString*, const 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 OptionalValue<String>& objectGroup, OwnPtr<protocol::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::HeapProfiler::SamplingHeapProfile>*) override;
void requestHeapStatsUpdate() override;

Powered by Google App Engine
This is Rietveld 408576698