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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 // Enables more web features over insecure connections. Designed to be used 684 // Enables more web features over insecure connections. Designed to be used
685 // for testing purposes only. 685 // for testing purposes only.
686 const char kReduceSecurityForTesting[] = "reduce-security-for-testing"; 686 const char kReduceSecurityForTesting[] = "reduce-security-for-testing";
687 687
688 // Register Pepper plugins (see pepper_plugin_list.cc for its format). 688 // Register Pepper plugins (see pepper_plugin_list.cc for its format).
689 const char kRegisterPepperPlugins[] = "register-pepper-plugins"; 689 const char kRegisterPepperPlugins[] = "register-pepper-plugins";
690 690
691 // Enables remote debug over HTTP on the specified port. 691 // Enables remote debug over HTTP on the specified port.
692 const char kRemoteDebuggingPort[] = "remote-debugging-port"; 692 const char kRemoteDebuggingPort[] = "remote-debugging-port";
693 693
694 // Porvides a list of addresses to discover DevTools remote debugging targets.
695 // 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.
696 const char kRemoteDebuggingTargets[] = "remote-debugging-targets";
697
694 // The contents of this flag are prepended to the renderer command line. 698 // The contents of this flag are prepended to the renderer command line.
695 // Useful values might be "valgrind" or "xterm -e gdb --args". 699 // Useful values might be "valgrind" or "xterm -e gdb --args".
696 const char kRendererCmdPrefix[] = "renderer-cmd-prefix"; 700 const char kRendererCmdPrefix[] = "renderer-cmd-prefix";
697 701
698 // Causes the process to run as renderer instead of as browser. 702 // Causes the process to run as renderer instead of as browser.
699 const char kRendererProcess[] = "renderer"; 703 const char kRendererProcess[] = "renderer";
700 704
701 // Overrides the default/calculated limit to the number of renderer processes. 705 // Overrides the default/calculated limit to the number of renderer processes.
702 // Very high values for this setting can lead to high memory/resource usage 706 // Very high values for this setting can lead to high memory/resource usage
703 // or instability. 707 // or instability.
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 // Windows Vista and later. 1007 // Windows Vista and later.
1004 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1008 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1005 #endif 1009 #endif
1006 1010
1007 // Enables the use of NPAPI plugins. 1011 // Enables the use of NPAPI plugins.
1008 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; 1012 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing";
1009 1013
1010 // Don't dump stuff here, follow the same order as the header. 1014 // Don't dump stuff here, follow the same order as the header.
1011 1015
1012 } // namespace switches 1016 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698