| 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 // 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 extern const char kDisableAuthNegotiateCnameLookup[]; | 75 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 76 extern const char kDisableBackgroundMode[]; | 76 extern const char kDisableBackgroundMode[]; |
| 77 extern const char kDisableBackgroundNetworking[]; | 77 extern const char kDisableBackgroundNetworking[]; |
| 78 extern const char kDisableClientSidePhishingDetection[]; | 78 extern const char kDisableClientSidePhishingDetection[]; |
| 79 extern const char kDisableConnectBackupJobs[]; | 79 extern const char kDisableConnectBackupJobs[]; |
| 80 extern const char kDisableCustomJumpList[]; | 80 extern const char kDisableCustomJumpList[]; |
| 81 extern const char kDisableCustomProtocolOSCheck[]; | 81 extern const char kDisableCustomProtocolOSCheck[]; |
| 82 extern const char kDisableDefaultApps[]; | 82 extern const char kDisableDefaultApps[]; |
| 83 extern const char kDisableDhcpWpad[]; | 83 extern const char kDisableDhcpWpad[]; |
| 84 extern const char kDisableExtensionsFileAccessCheck[]; | 84 extern const char kDisableExtensionsFileAccessCheck[]; |
| 85 extern const char kDisableExtensionsResourceWhitelist[]; |
| 85 extern const char kDisableExtensions[]; | 86 extern const char kDisableExtensions[]; |
| 86 extern const char kDisableFlashSandbox[]; | 87 extern const char kDisableFlashSandbox[]; |
| 87 extern const char kDisableHistoryQuickProvider[]; | 88 extern const char kDisableHistoryQuickProvider[]; |
| 88 extern const char kDisableHistoryURLProvider[]; | 89 extern const char kDisableHistoryURLProvider[]; |
| 89 extern const char kDisableImprovedDownloadProtection[]; | 90 extern const char kDisableImprovedDownloadProtection[]; |
| 90 extern const char kDisableInteractiveFormValidation[]; | 91 extern const char kDisableInteractiveFormValidation[]; |
| 91 extern const char kDisableInternalFlash[]; | 92 extern const char kDisableInternalFlash[]; |
| 92 extern const char kDisableIPv6[]; | 93 extern const char kDisableIPv6[]; |
| 93 extern const char kDisableIPPooling[]; | 94 extern const char kDisableIPPooling[]; |
| 94 extern const char kDisablePreconnect[]; | 95 extern const char kDisablePreconnect[]; |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 bool IsPrintPreviewEnabled(); | 393 bool IsPrintPreviewEnabled(); |
| 393 | 394 |
| 394 bool IsInBrowserThumbnailingEnabled(); | 395 bool IsInBrowserThumbnailingEnabled(); |
| 395 | 396 |
| 396 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 397 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 397 // alphabetical order, or in one of the ifdefs (also in order in each section). | 398 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 398 | 399 |
| 399 } // namespace switches | 400 } // namespace switches |
| 400 | 401 |
| 401 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 402 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |