| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 extern const char kCloudPrintFileType[]; | 60 extern const char kCloudPrintFileType[]; |
| 61 extern const char kCloudPrintPrintTicket[]; | 61 extern const char kCloudPrintPrintTicket[]; |
| 62 extern const char kCloudPrintProxyId[]; | 62 extern const char kCloudPrintProxyId[]; |
| 63 extern const char kCloudPrintServiceURL[]; | 63 extern const char kCloudPrintServiceURL[]; |
| 64 extern const char kComponentUpdaterDebug[]; | 64 extern const char kComponentUpdaterDebug[]; |
| 65 extern const char kConflictingModulesCheck[]; | 65 extern const char kConflictingModulesCheck[]; |
| 66 extern const char kCountry[]; | 66 extern const char kCountry[]; |
| 67 extern const char kCrashOnHangSeconds[]; | 67 extern const char kCrashOnHangSeconds[]; |
| 68 extern const char kCrashOnHangThreads[]; | 68 extern const char kCrashOnHangThreads[]; |
| 69 extern const char kCrashOnLive[]; | 69 extern const char kCrashOnLive[]; |
| 70 extern const char kCreateMobileBookmarksFolder[]; | |
| 71 extern const char kDebugDevToolsFrontend[]; | 70 extern const char kDebugDevToolsFrontend[]; |
| 72 extern const char kDebugEnableFrameToggle[]; | 71 extern const char kDebugEnableFrameToggle[]; |
| 73 extern const char kDebugPrint[]; | 72 extern const char kDebugPrint[]; |
| 74 extern const char kDeviceManagementUrl[]; | 73 extern const char kDeviceManagementUrl[]; |
| 75 extern const char kDiagnostics[]; | 74 extern const char kDiagnostics[]; |
| 76 extern const char kDisableAuthNegotiateCnameLookup[]; | 75 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 77 extern const char kDisableBackgroundMode[]; | 76 extern const char kDisableBackgroundMode[]; |
| 78 extern const char kDisableBackgroundNetworking[]; | 77 extern const char kDisableBackgroundNetworking[]; |
| 79 extern const char kDisableBundledPpapiFlash[]; | 78 extern const char kDisableBundledPpapiFlash[]; |
| 80 extern const char kDisableClientSidePhishingDetection[]; | 79 extern const char kDisableClientSidePhishingDetection[]; |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 #else | 389 #else |
| 391 extern const char kEnablePrintPreview[]; | 390 extern const char kEnablePrintPreview[]; |
| 392 #endif | 391 #endif |
| 393 | 392 |
| 394 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 393 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 395 // alphabetical order, or in one of the ifdefs (also in order in each section). | 394 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 396 | 395 |
| 397 } // namespace switches | 396 } // namespace switches |
| 398 | 397 |
| 399 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 398 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |