OLD | NEW |
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 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 // Specifies a comma separated list of QUIC connection options to send to | 897 // Specifies a comma separated list of QUIC connection options to send to |
898 // the server. | 898 // the server. |
899 const char kQuicConnectionOptions[] = "quic-connection-options"; | 899 const char kQuicConnectionOptions[] = "quic-connection-options"; |
900 | 900 |
901 // Specifies the maximum length for a QUIC packet. | 901 // Specifies the maximum length for a QUIC packet. |
902 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; | 902 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; |
903 | 903 |
904 // Specifies the version of QUIC to use. | 904 // Specifies the version of QUIC to use. |
905 const char kQuicVersion[] = "quic-version"; | 905 const char kQuicVersion[] = "quic-version"; |
906 | 906 |
| 907 // Porvides a list of addresses to discover DevTools remote debugging targets. |
| 908 // The format is <host>:<port>,...,<host>:port. |
| 909 const char kRemoteDebuggingTargets[] = "remote-debugging-targets"; |
| 910 |
907 // Indicates the last session should be restored on startup. This overrides the | 911 // Indicates the last session should be restored on startup. This overrides the |
908 // preferences value and is primarily intended for testing. The value of this | 912 // preferences value and is primarily intended for testing. The value of this |
909 // switch is the number of tabs to wait until loaded before 'load completed' is | 913 // switch is the number of tabs to wait until loaded before 'load completed' is |
910 // sent to the ui_test. | 914 // sent to the ui_test. |
911 const char kRestoreLastSession[] = "restore-last-session"; | 915 const char kRestoreLastSession[] = "restore-last-session"; |
912 | 916 |
913 // Disable saving pages as HTML-only, disable saving pages as HTML Complete | 917 // Disable saving pages as HTML-only, disable saving pages as HTML Complete |
914 // (with a directory of sub-resources). Enable only saving pages as MHTML. | 918 // (with a directory of sub-resources). Enable only saving pages as MHTML. |
915 // See http://crbug.com/120416 for how to remove this switch. | 919 // See http://crbug.com/120416 for how to remove this switch. |
916 const char kSavePageAsMHTML[] = "save-page-as-mhtml"; | 920 const char kSavePageAsMHTML[] = "save-page-as-mhtml"; |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1375 | 1379 |
1376 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1378 // | 1382 // |
1379 // You were going to just dump your switches here, weren't you? Instead, please | 1383 // You were going to just dump your switches here, weren't you? Instead, please |
1380 // put them in alphabetical order above, or in order inside the appropriate | 1384 // put them in alphabetical order above, or in order inside the appropriate |
1381 // ifdef at the bottom. The order should match the header. | 1385 // ifdef at the bottom. The order should match the header. |
1382 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
1383 | 1387 |
1384 } // namespace switches | 1388 } // namespace switches |
OLD | NEW |