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 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1019 // "net/proxy/proxy_bypass_rules.h" for the format of these rules. | 1019 // "net/proxy/proxy_bypass_rules.h" for the format of these rules. |
1020 const char kProxyBypassList[] = "proxy-bypass-list"; | 1020 const char kProxyBypassList[] = "proxy-bypass-list"; |
1021 | 1021 |
1022 // Uses the pac script at the given URL | 1022 // Uses the pac script at the given URL |
1023 const char kProxyPacUrl[] = "proxy-pac-url"; | 1023 const char kProxyPacUrl[] = "proxy-pac-url"; |
1024 | 1024 |
1025 // Uses a specified proxy server, overrides system settings. This switch only | 1025 // Uses a specified proxy server, overrides system settings. This switch only |
1026 // affects HTTP and HTTPS requests. | 1026 // affects HTTP and HTTPS requests. |
1027 const char kProxyServer[] = "proxy-server"; | 1027 const char kProxyServer[] = "proxy-server"; |
1028 | 1028 |
| 1029 // Specifies a comma separated list of QUIC connection options to send to |
| 1030 // the server. |
| 1031 const char kQuicConnectionOptions[] = "quic-connection-options"; |
| 1032 |
1029 // Specifies the maximum length for a QUIC packet. | 1033 // Specifies the maximum length for a QUIC packet. |
1030 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; | 1034 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; |
1031 | 1035 |
1032 // Specifies the version of QUIC to use. | 1036 // Specifies the version of QUIC to use. |
1033 const char kQuicVersion[] = "quic-version"; | 1037 const char kQuicVersion[] = "quic-version"; |
1034 | 1038 |
1035 // Chrome supports a playback and record mode. Record mode saves *everything* | 1039 // Chrome supports a playback and record mode. Record mode saves *everything* |
1036 // to the cache. Playback mode reads data exclusively from the cache. This | 1040 // to the cache. Playback mode reads data exclusively from the cache. This |
1037 // allows us to record a session into the cache and then replay it at will. | 1041 // allows us to record a session into the cache and then replay it at will. |
1038 // See also kPlaybackMode. | 1042 // See also kPlaybackMode. |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1398 | 1402 |
1399 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- |
1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1404 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1401 // | 1405 // |
1402 // You were going to just dump your switches here, weren't you? Instead, please | 1406 // You were going to just dump your switches here, weren't you? Instead, please |
1403 // put them in alphabetical order above, or in order inside the appropriate | 1407 // put them in alphabetical order above, or in order inside the appropriate |
1404 // ifdef at the bottom. The order should match the header. | 1408 // ifdef at the bottom. The order should match the header. |
1405 // ----------------------------------------------------------------------------- | 1409 // ----------------------------------------------------------------------------- |
1406 | 1410 |
1407 } // namespace switches | 1411 } // namespace switches |
OLD | NEW |