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 // Defines all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
6 | 6 |
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 extern const char kDebugPrint[]; | 78 extern const char kDebugPrint[]; |
79 extern const char kDeviceManagementUrl[]; | 79 extern const char kDeviceManagementUrl[]; |
80 extern const char kDiagnostics[]; | 80 extern const char kDiagnostics[]; |
81 extern const char kDisableAsyncDns[]; | 81 extern const char kDisableAsyncDns[]; |
82 extern const char kDisableAuthNegotiateCnameLookup[]; | 82 extern const char kDisableAuthNegotiateCnameLookup[]; |
83 extern const char kDisableBackgroundMode[]; | 83 extern const char kDisableBackgroundMode[]; |
84 extern const char kDisableBackgroundNetworking[]; | 84 extern const char kDisableBackgroundNetworking[]; |
85 extern const char kDisableBundledPpapiFlash[]; | 85 extern const char kDisableBundledPpapiFlash[]; |
86 extern const char kDisableBookmarkAutocompleteProvider[]; | 86 extern const char kDisableBookmarkAutocompleteProvider[]; |
87 extern const char kDisableClientSidePhishingDetection[]; | 87 extern const char kDisableClientSidePhishingDetection[]; |
88 extern const char kDisableCloudPolicyService[]; | |
89 extern const char kDisableComponentUpdate[]; | 88 extern const char kDisableComponentUpdate[]; |
90 extern const char kDisableCRLSets[]; | 89 extern const char kDisableCRLSets[]; |
91 extern const char kDisableCustomJumpList[]; | 90 extern const char kDisableCustomJumpList[]; |
92 extern const char kDisableDefaultApps[]; | 91 extern const char kDisableDefaultApps[]; |
93 extern const char kDisableDhcpWpad[]; | 92 extern const char kDisableDhcpWpad[]; |
94 extern const char kDisableExtensionsFileAccessCheck[]; | 93 extern const char kDisableExtensionsFileAccessCheck[]; |
95 extern const char kDisableExtensionsHttpThrottling[]; | 94 extern const char kDisableExtensionsHttpThrottling[]; |
96 extern const char kDisableExtensionsResourceWhitelist[]; | 95 extern const char kDisableExtensionsResourceWhitelist[]; |
97 extern const char kDisableExtensions[]; | 96 extern const char kDisableExtensions[]; |
98 extern const char kDisableImprovedDownloadProtection[]; | 97 extern const char kDisableImprovedDownloadProtection[]; |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 #else | 461 #else |
463 extern const char kEnablePrintPreview[]; | 462 extern const char kEnablePrintPreview[]; |
464 #endif | 463 #endif |
465 | 464 |
466 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 465 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
467 // alphabetical order, or in one of the ifdefs (also in order in each section). | 466 // alphabetical order, or in one of the ifdefs (also in order in each section). |
468 | 467 |
469 } // namespace switches | 468 } // namespace switches |
470 | 469 |
471 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 470 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |