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

Unified Diff: content/public/common/content_switches.cc

Issue 1224743002: DevTools: allow to pass list of remote debugging targets as command line argument (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed port forwarding test Created 5 years, 5 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: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index af1220672a36a62c4367258cfd3d74e20cda9798..78d263890eff25b3e27619e995930f265e93fbb0 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -691,6 +691,10 @@ const char kRegisterPepperPlugins[] = "register-pepper-plugins";
// Enables remote debug over HTTP on the specified port.
const char kRemoteDebuggingPort[] = "remote-debugging-port";
+// Porvides a list of addresses to discover DevTools remote debugging targets.
+// The format is <ip address>:<port>,...,<ip address>:port
dgozman 2015/07/06 10:08:34 nit: full stop please.
yurys 2015/07/06 13:57:07 Done.
+const char kRemoteDebuggingTargets[] = "remote-debugging-targets";
+
// The contents of this flag are prepended to the renderer command line.
// Useful values might be "valgrind" or "xterm -e gdb --args".
const char kRendererCmdPrefix[] = "renderer-cmd-prefix";

Powered by Google App Engine
This is Rietveld 408576698