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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.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/V8ProfilerAgentImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
index 54fe0b04ed37aa0d457117d9b81b8f1f6476c6db..aeac0f1bf4b5eae956e25f628c403b85dde5426a 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
@@ -18,10 +18,10 @@ namespace blink {
class V8InspectorSessionImpl;
-class V8ProfilerAgentImpl : public protocol::Backend::Profiler {
+class V8ProfilerAgentImpl : public protocol::Profiler::Backend {
PROTOCOL_DISALLOW_COPY(V8ProfilerAgentImpl);
public:
- V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::Frontend::Profiler*, protocol::DictionaryValue* state);
+ V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::Profiler::Frontend*, protocol::DictionaryValue* state);
~V8ProfilerAgentImpl() override;
bool enabled() const { return m_enabled; }
@@ -47,7 +47,7 @@ private:
V8InspectorSessionImpl* m_session;
v8::Isolate* m_isolate;
protocol::DictionaryValue* m_state;
- protocol::Frontend::Profiler* m_frontend;
+ protocol::Profiler::Frontend* m_frontend;
bool m_enabled;
bool m_recordingCPUProfile;
class ProfileDescriptor;

Powered by Google App Engine
This is Rietveld 408576698