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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.cpp

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/public/V8Inspector.cpp
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.cpp b/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.cpp
index 9f3ddf063a00b3821e6e150fd912d77dbe7be74b..9e1f378916aad0fc99f6a0b7e482c4c9de75a5e2 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.cpp
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.cpp
@@ -72,13 +72,13 @@ void V8Inspector::connectFrontend(protocol::FrontendChannel* channel)
m_dispatcher->registerAgent(m_session->heapProfilerAgent());
m_session->runtimeAgent()->setFrontend(
- protocol::Frontend::Runtime::from(m_frontend.get()));
+ protocol::Runtime::Frontend::from(m_frontend.get()));
m_session->debuggerAgent()->setFrontend(
- protocol::Frontend::Debugger::from(m_frontend.get()));
+ protocol::Debugger::Frontend::from(m_frontend.get()));
m_session->profilerAgent()->setFrontend(
- protocol::Frontend::Profiler::from(m_frontend.get()));
+ protocol::Profiler::Frontend::from(m_frontend.get()));
m_session->heapProfilerAgent()->setFrontend(
- protocol::Frontend::HeapProfiler::from(m_frontend.get()));
+ protocol::HeapProfiler::Frontend::from(m_frontend.get()));
}
void V8Inspector::disconnectFrontend()

Powered by Google App Engine
This is Rietveld 408576698