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