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

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

Issue 2458033003: DevTools: introduce --custom-devtools-frontend flag. (Closed)
Patch Set: propogate devtools experiments query parameter Created 4 years, 1 month 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 "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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 const char kQuicConnectionOptions[] = "quic-connection-options"; 823 const char kQuicConnectionOptions[] = "quic-connection-options";
824 824
825 // Specifies a comma separated list of hosts to whitelist QUIC for. 825 // Specifies a comma separated list of hosts to whitelist QUIC for.
826 const char kQuicHostWhitelist[] = "quic-host-whitelist"; 826 const char kQuicHostWhitelist[] = "quic-host-whitelist";
827 827
828 // Specifies the maximum length for a QUIC packet. 828 // Specifies the maximum length for a QUIC packet.
829 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; 829 const char kQuicMaxPacketLength[] = "quic-max-packet-length";
830 830
831 // Specifies the version of QUIC to use. 831 // Specifies the version of QUIC to use.
832 const char kQuicVersion[] = "quic-version"; 832 const char kQuicVersion[] = "quic-version";
833
834 // Specifies the absolute path to the devtools front-end folder. This
835 // front-end will be used for the remote debugging session.
836 const char kRemoteDebuggingFrontend[] = "remote-debugging-frontend";
837
833 // Porvides a list of addresses to discover DevTools remote debugging targets. 838 // Porvides a list of addresses to discover DevTools remote debugging targets.
834 // The format is <host>:<port>,...,<host>:port. 839 // The format is <host>:<port>,...,<host>:port.
835 const char kRemoteDebuggingTargets[] = "remote-debugging-targets"; 840 const char kRemoteDebuggingTargets[] = "remote-debugging-targets";
836 841
837 // Indicates the last session should be restored on startup. This overrides the 842 // Indicates the last session should be restored on startup. This overrides the
838 // preferences value and is primarily intended for testing. The value of this 843 // preferences value and is primarily intended for testing. The value of this
839 // switch is the number of tabs to wait until loaded before 'load completed' is 844 // switch is the number of tabs to wait until loaded before 'load completed' is
840 // sent to the ui_test. 845 // sent to the ui_test.
841 const char kRestoreLastSession[] = "restore-last-session"; 846 const char kRestoreLastSession[] = "restore-last-session";
842 847
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 1329
1325 // ----------------------------------------------------------------------------- 1330 // -----------------------------------------------------------------------------
1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1331 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1327 // 1332 //
1328 // You were going to just dump your switches here, weren't you? Instead, please 1333 // You were going to just dump your switches here, weren't you? Instead, please
1329 // put them in alphabetical order above, or in order inside the appropriate 1334 // put them in alphabetical order above, or in order inside the appropriate
1330 // ifdef at the bottom. The order should match the header. 1335 // ifdef at the bottom. The order should match the header.
1331 // ----------------------------------------------------------------------------- 1336 // -----------------------------------------------------------------------------
1332 1337
1333 } // namespace switches 1338 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698