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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
421 // Cloud Print Proxy component within the service process. | 421 // Cloud Print Proxy component within the service process. |
422 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 422 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
423 | 423 |
424 // Enables compositing to texture instead of display. | 424 // Enables compositing to texture instead of display. |
425 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; | 425 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; |
426 | 426 |
427 // Enables establishing a backup TCP connection if a specified timeout is | 427 // Enables establishing a backup TCP connection if a specified timeout is |
428 // exceeded. | 428 // exceeded. |
429 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; | 429 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; |
430 | 430 |
431 // Enables establishing revocation information by downloading a set of CRLs | |
wtc
2011/10/21 23:17:31
Nit: add "certificate" before "revocation".
"perf
agl
2011/10/24 20:44:27
Done.
| |
432 // rather than performing on-line checks. | |
433 const char kEnableCRLSets[] = "enable-crl-sets"; | |
434 | |
431 // Enables web developers to create apps for Chrome without using crx packages. | 435 // Enables web developers to create apps for Chrome without using crx packages. |
432 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; | 436 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; |
433 | 437 |
434 // Enables extension APIs that are in development. | 438 // Enables extension APIs that are in development. |
435 const char kEnableExperimentalExtensionApis[] = | 439 const char kEnableExperimentalExtensionApis[] = |
436 "enable-experimental-extension-apis"; | 440 "enable-experimental-extension-apis"; |
437 | 441 |
438 // Enables extension alerts, which are currently in development. | 442 // Enables extension alerts, which are currently in development. |
439 const char kEnableExtensionAlerts[] = "enable-extension-alerts"; | 443 const char kEnableExtensionAlerts[] = "enable-extension-alerts"; |
440 | 444 |
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1256 | 1260 |
1257 // ----------------------------------------------------------------------------- | 1261 // ----------------------------------------------------------------------------- |
1258 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1262 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1259 // | 1263 // |
1260 // You were going to just dump your switches here, weren't you? Instead, | 1264 // You were going to just dump your switches here, weren't you? Instead, |
1261 // please put them in alphabetical order above, or in order inside the | 1265 // please put them in alphabetical order above, or in order inside the |
1262 // appropriate ifdef at the bottom. The order should match the header. | 1266 // appropriate ifdef at the bottom. The order should match the header. |
1263 // ----------------------------------------------------------------------------- | 1267 // ----------------------------------------------------------------------------- |
1264 | 1268 |
1265 } // namespace switches | 1269 } // namespace switches |
OLD | NEW |