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