| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 extern const char kContentSettings2[]; | 75 extern const char kContentSettings2[]; |
| 76 extern const char kCountry[]; | 76 extern const char kCountry[]; |
| 77 extern const char kCrashOnHangThreads[]; | 77 extern const char kCrashOnHangThreads[]; |
| 78 extern const char kCreateBrowserOnStartupForTests[]; | 78 extern const char kCreateBrowserOnStartupForTests[]; |
| 79 extern const char kDebugEnableFrameToggle[]; | 79 extern const char kDebugEnableFrameToggle[]; |
| 80 extern const char kDebugPackedApps[]; | 80 extern const char kDebugPackedApps[]; |
| 81 extern const char kDebugPrint[]; | 81 extern const char kDebugPrint[]; |
| 82 extern const char kDeviceManagementUrl[]; | 82 extern const char kDeviceManagementUrl[]; |
| 83 extern const char kDiagnostics[]; | 83 extern const char kDiagnostics[]; |
| 84 extern const char kDiagnosticsFormat[]; | 84 extern const char kDiagnosticsFormat[]; |
| 85 extern const char kDiagnosticsRecovery[]; |
| 85 extern const char kDisableAppList[]; | 86 extern const char kDisableAppList[]; |
| 86 extern const char kDisableAsyncDns[]; | 87 extern const char kDisableAsyncDns[]; |
| 87 extern const char kDisableAuthNegotiateCnameLookup[]; | 88 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 88 extern const char kDisableBackgroundMode[]; | 89 extern const char kDisableBackgroundMode[]; |
| 89 extern const char kDisableBackgroundNetworking[]; | 90 extern const char kDisableBackgroundNetworking[]; |
| 90 extern const char kDisableBetterPopupBlocking[]; | 91 extern const char kDisableBetterPopupBlocking[]; |
| 91 extern const char kDisableBundledPpapiFlash[]; | 92 extern const char kDisableBundledPpapiFlash[]; |
| 92 extern const char kDisableBookmarkAutocompleteProvider[]; | 93 extern const char kDisableBookmarkAutocompleteProvider[]; |
| 93 extern const char kDisableClientSidePhishingDetection[]; | 94 extern const char kDisableClientSidePhishingDetection[]; |
| 94 extern const char kDisableCloudPolicyOnSignin[]; | 95 extern const char kDisableCloudPolicyOnSignin[]; |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 #else | 459 #else |
| 459 extern const char kEnablePrintPreview[]; | 460 extern const char kEnablePrintPreview[]; |
| 460 #endif | 461 #endif |
| 461 | 462 |
| 462 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 463 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 463 // alphabetical order, or in one of the ifdefs (also in order in each section). | 464 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 464 | 465 |
| 465 } // namespace switches | 466 } // namespace switches |
| 466 | 467 |
| 467 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 468 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |