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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.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/V8RuntimeAgentImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
index 59b425457dda3b5f1647ab3002069ef683050a9d..9ff665e6a37246e92005f94c42c8e3aa1b2261e1 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
@@ -52,10 +52,10 @@ class DictionaryValue;
using protocol::Maybe;
-class V8RuntimeAgentImpl : public protocol::Backend::Runtime {
+class V8RuntimeAgentImpl : public protocol::Runtime::Backend {
PROTOCOL_DISALLOW_COPY(V8RuntimeAgentImpl);
public:
- V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::Frontend::Runtime*, protocol::DictionaryValue* state);
+ V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::Runtime::Frontend*, protocol::DictionaryValue* state);
~V8RuntimeAgentImpl() override;
void restore();
@@ -120,7 +120,7 @@ public:
private:
V8InspectorSessionImpl* m_session;
protocol::DictionaryValue* m_state;
- protocol::Frontend::Runtime* m_frontend;
+ protocol::Runtime::Frontend* m_frontend;
V8DebuggerImpl* m_debugger;
bool m_enabled;
protocol::HashMap<String16, std::unique_ptr<v8::Global<v8::Script>>> m_compiledScripts;

Powered by Google App Engine
This is Rietveld 408576698