| 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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 const char kProxyBypassList[] = "proxy-bypass-list"; | 774 const char kProxyBypassList[] = "proxy-bypass-list"; |
| 775 | 775 |
| 776 // Uses the pac script at the given URL | 776 // Uses the pac script at the given URL |
| 777 const char kProxyPacUrl[] = "proxy-pac-url"; | 777 const char kProxyPacUrl[] = "proxy-pac-url"; |
| 778 | 778 |
| 779 // Uses a specified proxy server, overrides system settings. This switch only | 779 // Uses a specified proxy server, overrides system settings. This switch only |
| 780 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the | 780 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the |
| 781 // highest priority. | 781 // highest priority. |
| 782 const char kProxyServer[] = "proxy-server"; | 782 const char kProxyServer[] = "proxy-server"; |
| 783 | 783 |
| 784 // Specifies the time for tab purging and suspending. When the indicated time | |
| 785 // passes after a tab goes backgrounded, the backgrounded tab is purged and | |
| 786 // suspended to save memory usage. The default value is "0" and purging and | |
| 787 // suspending never happen. | |
| 788 const char kPurgeAndSuspendTime[] = "purge-and-suspend-time"; | |
| 789 | |
| 790 // Specifies a comma separated list of QUIC connection options to send to | 784 // Specifies a comma separated list of QUIC connection options to send to |
| 791 // the server. | 785 // the server. |
| 792 const char kQuicConnectionOptions[] = "quic-connection-options"; | 786 const char kQuicConnectionOptions[] = "quic-connection-options"; |
| 793 | 787 |
| 794 // Specifies a comma separated list of hosts to whitelist QUIC for. | 788 // Specifies a comma separated list of hosts to whitelist QUIC for. |
| 795 const char kQuicHostWhitelist[] = "quic-host-whitelist"; | 789 const char kQuicHostWhitelist[] = "quic-host-whitelist"; |
| 796 | 790 |
| 797 // Specifies the maximum length for a QUIC packet. | 791 // Specifies the maximum length for a QUIC packet. |
| 798 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; | 792 const char kQuicMaxPacketLength[] = "quic-max-packet-length"; |
| 799 | 793 |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1278 | 1272 |
| 1279 // ----------------------------------------------------------------------------- | 1273 // ----------------------------------------------------------------------------- |
| 1280 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1274 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1281 // | 1275 // |
| 1282 // You were going to just dump your switches here, weren't you? Instead, please | 1276 // You were going to just dump your switches here, weren't you? Instead, please |
| 1283 // put them in alphabetical order above, or in order inside the appropriate | 1277 // put them in alphabetical order above, or in order inside the appropriate |
| 1284 // ifdef at the bottom. The order should match the header. | 1278 // ifdef at the bottom. The order should match the header. |
| 1285 // ----------------------------------------------------------------------------- | 1279 // ----------------------------------------------------------------------------- |
| 1286 | 1280 |
| 1287 } // namespace switches | 1281 } // namespace switches |
| OLD | NEW |