OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 // Enables compositing to texture instead of display. | 391 // Enables compositing to texture instead of display. |
392 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; | 392 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; |
393 | 393 |
394 // Enables establishing a backup TCP connection if a specified timeout is | 394 // Enables establishing a backup TCP connection if a specified timeout is |
395 // exceeded. | 395 // exceeded. |
396 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; | 396 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; |
397 | 397 |
398 // Enables web developers to create apps for Chrome without using crx packages. | 398 // Enables web developers to create apps for Chrome without using crx packages. |
399 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; | 399 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; |
400 | 400 |
| 401 // Enables retrieval of PAC URLs from DHCP as per the WPAD standard. Note |
| 402 // that this feature is not supported on all platforms, and using the flag |
| 403 // is a no-op on such platforms. |
| 404 const char kEnableDhcpWpad[] = "enable-dhcp-wpad"; |
| 405 |
401 // Enable DNS side checking of certificates. Still experimental, should only | 406 // Enable DNS side checking of certificates. Still experimental, should only |
402 // be used by developers at the current time. | 407 // be used by developers at the current time. |
403 const char kEnableDNSCertProvenanceChecking[] = | 408 const char kEnableDNSCertProvenanceChecking[] = |
404 "enable-dns-cert-provenance-checking"; | 409 "enable-dns-cert-provenance-checking"; |
405 | 410 |
406 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 411 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
407 | 412 |
408 // Enables app manifest features that are in development. | 413 // Enables app manifest features that are in development. |
409 const char kEnableExperimentalAppManifests[] = | 414 const char kEnableExperimentalAppManifests[] = |
410 "enable-experimental-app-manifests"; | 415 "enable-experimental-app-manifests"; |
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1169 | 1174 |
1170 // ----------------------------------------------------------------------------- | 1175 // ----------------------------------------------------------------------------- |
1171 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1176 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1172 // | 1177 // |
1173 // You were going to just dump your switches here, weren't you? Instead, | 1178 // You were going to just dump your switches here, weren't you? Instead, |
1174 // please put them in alphabetical order above, or in order inside the | 1179 // please put them in alphabetical order above, or in order inside the |
1175 // appropriate ifdef at the bottom. The order should match the header. | 1180 // appropriate ifdef at the bottom. The order should match the header. |
1176 // ----------------------------------------------------------------------------- | 1181 // ----------------------------------------------------------------------------- |
1177 | 1182 |
1178 } // namespace switches | 1183 } // namespace switches |
OLD | NEW |