| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 extern const char kDisableClientSidePhishingDetection[]; | 95 extern const char kDisableClientSidePhishingDetection[]; |
| 96 extern const char kDisableComponentExtensionsWithBackgroundPages[]; | 96 extern const char kDisableComponentExtensionsWithBackgroundPages[]; |
| 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 kDisableDeviceDiscoveryNotifications[]; |
| 103 extern const char kDisableDhcpWpad[]; | 103 extern const char kDisableDhcpWpad[]; |
| 104 extern const char kDisableDnsProbes[]; | 104 extern const char kDisableDnsProbes[]; |
| 105 extern const char kDisableEnhancedBookmarks[]; |
| 105 extern const char kDisableExtensionsFileAccessCheck[]; | 106 extern const char kDisableExtensionsFileAccessCheck[]; |
| 106 extern const char kDisableExtensionsHttpThrottling[]; | 107 extern const char kDisableExtensionsHttpThrottling[]; |
| 107 extern const char kDisableExtensionsResourceWhitelist[]; | 108 extern const char kDisableExtensionsResourceWhitelist[]; |
| 108 extern const char kDisableExtensions[]; | 109 extern const char kDisableExtensions[]; |
| 109 extern const char kDisableGoogleNowIntegration[]; | 110 extern const char kDisableGoogleNowIntegration[]; |
| 110 extern const char kDisableImprovedDownloadProtection[]; | 111 extern const char kDisableImprovedDownloadProtection[]; |
| 111 extern const char kDisableInstantExtendedAPI[]; | 112 extern const char kDisableInstantExtendedAPI[]; |
| 112 extern const char kDisableIPv6[]; | 113 extern const char kDisableIPv6[]; |
| 113 extern const char kDisableIPPooling[]; | 114 extern const char kDisableIPPooling[]; |
| 114 extern const char kDisableLocalFirstLoadNTP[]; | 115 extern const char kDisableLocalFirstLoadNTP[]; |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 #else | 471 #else |
| 471 extern const char kEnablePrintPreview[]; | 472 extern const char kEnablePrintPreview[]; |
| 472 #endif | 473 #endif |
| 473 | 474 |
| 474 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 475 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 475 // alphabetical order, or in one of the ifdefs (also in order in each section). | 476 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 476 | 477 |
| 477 } // namespace switches | 478 } // namespace switches |
| 478 | 479 |
| 479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 480 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |