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

Unified Diff: chrome/browser/debugger/debugger_wrapper.cc

Issue 174226: Extension ports devtools remote service.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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: chrome/browser/debugger/debugger_wrapper.cc
===================================================================
--- chrome/browser/debugger/debugger_wrapper.cc (revision 23787)
+++ chrome/browser/debugger/debugger_wrapper.cc (working copy)
@@ -7,6 +7,7 @@
#include "chrome/browser/debugger/debugger_remote_service.h"
#include "chrome/browser/debugger/devtools_protocol_handler.h"
#include "chrome/browser/debugger/devtools_remote_service.h"
+#include "chrome/browser/debugger/extension_ports_remote_service.h"
DebuggerWrapper::DebuggerWrapper(int port) {
if (port > 0) {
@@ -17,6 +18,9 @@
proto_handler_->RegisterDestination(
new DebuggerRemoteService(proto_handler_),
DebuggerRemoteService::kToolName);
+ proto_handler_->RegisterDestination(
+ new ExtensionPortsRemoteService(proto_handler_),
+ ExtensionPortsRemoteService::kToolName);
proto_handler_->Start();
}
}
« no previous file with comments | « chrome/browser/automation/extension_port_container.cc ('k') | chrome/browser/debugger/extension_ports_remote_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698