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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8HeapProfilerAgentImpl.h

Issue 1696513002: DevTools: move protocol-related generators into inspector subfolder. (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/core/inspector/v8/V8HeapProfilerAgentImpl.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8HeapProfilerAgentImpl.h b/third_party/WebKit/Source/core/inspector/v8/V8HeapProfilerAgentImpl.h
index f1e199d7ebd3c62dbdfe1870a062580daf10f345..67922477c025798104bad16bd041294e5d213eeb 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8HeapProfilerAgentImpl.h
+++ b/third_party/WebKit/Source/core/inspector/v8/V8HeapProfilerAgentImpl.h
@@ -23,7 +23,7 @@ public:
~V8HeapProfilerAgentImpl() override;
void setInspectorState(PassRefPtr<JSONObject> state) override { m_state = state; }
- void setFrontend(InspectorFrontend::HeapProfiler* frontend) override { m_frontend = frontend; }
+ void setFrontend(protocol::Frontend::HeapProfiler* frontend) override { m_frontend = frontend; }
void clearFrontend() override;
void restore() override;
@@ -37,7 +37,7 @@ public:
void takeHeapSnapshot(ErrorString*, const bool* reportProgress) override;
- void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) override;
+ void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<protocol::TypeBuilder::Runtime::RemoteObject>& result) override;
void addInspectedHeapObject(ErrorString*, const String& inspectedHeapObjectId) override;
void getHeapObjectId(ErrorString*, const String& objectId, String* heapSnapshotObjectId) override;
@@ -49,7 +49,7 @@ private:
v8::Isolate* m_isolate;
V8RuntimeAgent* m_runtimeAgent;
- InspectorFrontend::HeapProfiler* m_frontend;
+ protocol::Frontend::HeapProfiler* m_frontend;
RefPtr<JSONObject> m_state;
};

Powered by Google App Engine
This is Rietveld 408576698