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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 2109243003: Introduce --remote-debugging-frontend switch for custom remote debugging front-end (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: support absolute path instead of HTTP endpoint Created 4 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the 872 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the
873 // highest priority. 873 // highest priority.
874 const char kProxyServer[] = "proxy-server"; 874 const char kProxyServer[] = "proxy-server";
875 875
876 // Specifies the time for tab purging and suspending. When the indicated time 876 // Specifies the time for tab purging and suspending. When the indicated time
877 // passes after a tab goes backgrounded, the backgrounded tab is purged and 877 // passes after a tab goes backgrounded, the backgrounded tab is purged and
878 // suspended to save memory usage. The default value is "0" and purging and 878 // suspended to save memory usage. The default value is "0" and purging and
879 // suspending never happen. 879 // suspending never happen.
880 const char kPurgeAndSuspendTime[] = "purge-and-suspend-time"; 880 const char kPurgeAndSuspendTime[] = "purge-and-suspend-time";
881 881
882 // Specifies the absolute path to the devtools front-end folder. This
883 // front-end will be used for the remote debugging session.
884 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend";
885
882 // Porvides a list of addresses to discover DevTools remote debugging targets. 886 // Porvides a list of addresses to discover DevTools remote debugging targets.
883 // The format is <host>:<port>,...,<host>:port. 887 // The format is <host>:<port>,...,<host>:port.
884 const char kRemoteDebuggingTargets[] = "remote-debugging-targets"; 888 const char kRemoteDebuggingTargets[] = "remote-debugging-targets";
885 889
886 // Indicates the last session should be restored on startup. This overrides the 890 // Indicates the last session should be restored on startup. This overrides the
887 // preferences value and is primarily intended for testing. The value of this 891 // preferences value and is primarily intended for testing. The value of this
888 // switch is the number of tabs to wait until loaded before 'load completed' is 892 // switch is the number of tabs to wait until loaded before 'load completed' is
889 // sent to the ui_test. 893 // sent to the ui_test.
890 const char kRestoreLastSession[] = "restore-last-session"; 894 const char kRestoreLastSession[] = "restore-last-session";
891 895
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 1339
1336 // ----------------------------------------------------------------------------- 1340 // -----------------------------------------------------------------------------
1337 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1341 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1338 // 1342 //
1339 // You were going to just dump your switches here, weren't you? Instead, please 1343 // You were going to just dump your switches here, weren't you? Instead, please
1340 // put them in alphabetical order above, or in order inside the appropriate 1344 // put them in alphabetical order above, or in order inside the appropriate
1341 // ifdef at the bottom. The order should match the header. 1345 // ifdef at the bottom. The order should match the header.
1342 // ----------------------------------------------------------------------------- 1346 // -----------------------------------------------------------------------------
1343 1347
1344 } // namespace switches 1348 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698