| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 extern const char kContentSettings2[]; | 73 extern const char kContentSettings2[]; |
| 74 extern const char kCountry[]; | 74 extern const char kCountry[]; |
| 75 extern const char kCrashOnHangThreads[]; | 75 extern const char kCrashOnHangThreads[]; |
| 76 extern const char kCreateBrowserOnStartupForTests[]; | 76 extern const char kCreateBrowserOnStartupForTests[]; |
| 77 #if defined(OS_ANDROID) || defined(OS_IOS) | 77 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 78 extern const char kDataReductionProxyProbeURL[]; | 78 extern const char kDataReductionProxyProbeURL[]; |
| 79 #endif | 79 #endif |
| 80 extern const char kDebugEnableFrameToggle[]; | 80 extern const char kDebugEnableFrameToggle[]; |
| 81 extern const char kDebugPackedApps[]; | 81 extern const char kDebugPackedApps[]; |
| 82 extern const char kDebugPrint[]; | 82 extern const char kDebugPrint[]; |
| 83 extern const char kDeviceManagementUrl[]; | |
| 84 extern const char kDiagnostics[]; | 83 extern const char kDiagnostics[]; |
| 85 extern const char kDiagnosticsFormat[]; | 84 extern const char kDiagnosticsFormat[]; |
| 86 extern const char kDiagnosticsRecovery[]; | 85 extern const char kDiagnosticsRecovery[]; |
| 87 extern const char kDisableAsyncDns[]; | 86 extern const char kDisableAsyncDns[]; |
| 88 extern const char kDisableAuthNegotiateCnameLookup[]; | 87 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 89 extern const char kDisableBackgroundMode[]; | 88 extern const char kDisableBackgroundMode[]; |
| 90 extern const char kDisableBackgroundNetworking[]; | 89 extern const char kDisableBackgroundNetworking[]; |
| 91 extern const char kDisableBundledPpapiFlash[]; | 90 extern const char kDisableBundledPpapiFlash[]; |
| 92 extern const char kDisableBookmarkAutocompleteProvider[]; | 91 extern const char kDisableBookmarkAutocompleteProvider[]; |
| 93 extern const char kDisableClientSidePhishingDetection[]; | 92 extern const char kDisableClientSidePhishingDetection[]; |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 #else | 477 #else |
| 479 extern const char kEnablePrintPreview[]; | 478 extern const char kEnablePrintPreview[]; |
| 480 #endif | 479 #endif |
| 481 | 480 |
| 482 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 481 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 483 // alphabetical order, or in one of the ifdefs (also in order in each section). | 482 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 484 | 483 |
| 485 } // namespace switches | 484 } // namespace switches |
| 486 | 485 |
| 487 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |