| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 const char kProxyBypassList[] = "proxy-bypass-list"; | 795 const char kProxyBypassList[] = "proxy-bypass-list"; |
| 796 | 796 |
| 797 // Uses the pac script at the given URL | 797 // Uses the pac script at the given URL |
| 798 const char kProxyPacUrl[] = "proxy-pac-url"; | 798 const char kProxyPacUrl[] = "proxy-pac-url"; |
| 799 | 799 |
| 800 // Uses a specified proxy server, overrides system settings. This switch only | 800 // Uses a specified proxy server, overrides system settings. This switch only |
| 801 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the | 801 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the |
| 802 // highest priority. | 802 // highest priority. |
| 803 const char kProxyServer[] = "proxy-server"; | 803 const char kProxyServer[] = "proxy-server"; |
| 804 | 804 |
| 805 // Specifies the time for tab purging and suspending. When the indicated time | |
| 806 // passes after a tab goes backgrounded, the backgrounded tab is purged and | |
| 807 // suspended to save memory usage. The default value is "0" and purging and | |
| 808 // suspending never happen. | |
| 809 const char kPurgeAndSuspendTime[] = "purge-and-suspend-time"; | |
| 810 | |
| 811 // Specifies a comma separated list of QUIC connection options to send to | 805 // Specifies a comma separated list of QUIC connection options to send to |
| 812 // the server. | 806 // the server. |
| 813 const char kQuicConnectionOptions[] = "quic-connection-options"; | 807 const char kQuicConnectionOptions[] = "quic-connection-options"; |
| 814 | 808 |
| 815 // Specifies a comma separated list of hosts to whitelist QUIC for. | 809 // Specifies a comma separated list of hosts to whitelist QUIC for. |
| 816 const char kQuicHostWhitelist[] = "quic-host-whitelist"; | 810 const char kQuicHostWhitelist[] = "quic-host-whitelist"; |
| 817 | 811 |
| 818 // Specifies the maximum length for a QUIC packet. | 812 // Specifies the maximum length for a QUIC packet. |
| 819 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; | 813 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; |
| 820 | 814 |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 | 1312 |
| 1319 // ----------------------------------------------------------------------------- | 1313 // ----------------------------------------------------------------------------- |
| 1320 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1314 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1321 // | 1315 // |
| 1322 // You were going to just dump your switches here, weren't you? Instead, please | 1316 // You were going to just dump your switches here, weren't you? Instead, please |
| 1323 // put them in alphabetical order above, or in order inside the appropriate | 1317 // put them in alphabetical order above, or in order inside the appropriate |
| 1324 // ifdef at the bottom. The order should match the header. | 1318 // ifdef at the bottom. The order should match the header. |
| 1325 // ----------------------------------------------------------------------------- | 1319 // ----------------------------------------------------------------------------- |
| 1326 | 1320 |
| 1327 } // namespace switches | 1321 } // namespace switches |
| OLD | NEW |