| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 extern const char kDisableBundledPpapiFlash[]; | 92 extern const char kDisableBundledPpapiFlash[]; |
| 93 extern const char kDisableBookmarkAutocompleteProvider[]; | 93 extern const char kDisableBookmarkAutocompleteProvider[]; |
| 94 extern const char kDisableClientSidePhishingDetection[]; | 94 extern const char kDisableClientSidePhishingDetection[]; |
| 95 extern const char kDisableCloudPolicyOnSignin[]; | 95 extern const char kDisableCloudPolicyOnSignin[]; |
| 96 extern const char kDisableCloudPolicyPush[]; | 96 extern const char kDisableCloudPolicyPush[]; |
| 97 extern const char kDisableComponentUpdate[]; | 97 extern const char kDisableComponentUpdate[]; |
| 98 extern const char kDisableCRLSets[]; | 98 extern const char kDisableCRLSets[]; |
| 99 extern const char kDisableCustomJumpList[]; | 99 extern const char kDisableCustomJumpList[]; |
| 100 extern const char kDisableDefaultApps[]; | 100 extern const char kDisableDefaultApps[]; |
| 101 extern const char kDisableDeviceDiscovery[]; | 101 extern const char kDisableDeviceDiscovery[]; |
| 102 extern const char kDisableDeviceDiscoveryNotifications[]; |
| 102 extern const char kDisableDhcpWpad[]; | 103 extern const char kDisableDhcpWpad[]; |
| 103 extern const char kDisableDnsProbes[]; | 104 extern const char kDisableDnsProbes[]; |
| 104 extern const char kDisableExtensionsFileAccessCheck[]; | 105 extern const char kDisableExtensionsFileAccessCheck[]; |
| 105 extern const char kDisableExtensionsHttpThrottling[]; | 106 extern const char kDisableExtensionsHttpThrottling[]; |
| 106 extern const char kDisableExtensionsResourceWhitelist[]; | 107 extern const char kDisableExtensionsResourceWhitelist[]; |
| 107 extern const char kDisableExtensions[]; | 108 extern const char kDisableExtensions[]; |
| 108 extern const char kDisableImprovedDownloadProtection[]; | 109 extern const char kDisableImprovedDownloadProtection[]; |
| 109 extern const char kDisableInstantExtendedAPI[]; | 110 extern const char kDisableInstantExtendedAPI[]; |
| 110 extern const char kDisableIPv6[]; | 111 extern const char kDisableIPv6[]; |
| 111 extern const char kDisableIPPooling[]; | 112 extern const char kDisableIPPooling[]; |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 #else | 466 #else |
| 466 extern const char kEnablePrintPreview[]; | 467 extern const char kEnablePrintPreview[]; |
| 467 #endif | 468 #endif |
| 468 | 469 |
| 469 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 470 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 470 // alphabetical order, or in one of the ifdefs (also in order in each section). | 471 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 471 | 472 |
| 472 } // namespace switches | 473 } // namespace switches |
| 473 | 474 |
| 474 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 475 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |