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

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

Issue 2008183002: DevTools: generate frontend and backend interfaces under domains. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed Created 4 years, 7 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 b1702cac560a31833b4c46d65515f1af5786be54..a959370ecd42be5cede71be4904f3d06de7a7308 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
@@ -16,10 +16,10 @@ class V8InspectorSessionImpl;
using protocol::Maybe;
-class V8HeapProfilerAgentImpl : public protocol::Backend::HeapProfiler {
+class V8HeapProfilerAgentImpl : public protocol::HeapProfiler::Backend {
PROTOCOL_DISALLOW_COPY(V8HeapProfilerAgentImpl);
public:
- V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::Frontend::HeapProfiler*, protocol::DictionaryValue* state);
+ V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::HeapProfiler::Frontend*, protocol::DictionaryValue* state);
~V8HeapProfilerAgentImpl() override;
void restore();
@@ -48,7 +48,7 @@ private:
V8InspectorSessionImpl* m_session;
v8::Isolate* m_isolate;
- protocol::Frontend::HeapProfiler* m_frontend;
+ protocol::HeapProfiler::Frontend* m_frontend;
protocol::DictionaryValue* m_state;
bool m_hasTimer;
};

Powered by Google App Engine
This is Rietveld 408576698