| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 extern const char kChromeVersion[]; | 50 extern const char kChromeVersion[]; |
| 51 extern const char kCloudPrintDeleteFile[]; | 51 extern const char kCloudPrintDeleteFile[]; |
| 52 extern const char kCloudPrintFile[]; | 52 extern const char kCloudPrintFile[]; |
| 53 extern const char kCloudPrintJobTitle[]; | 53 extern const char kCloudPrintJobTitle[]; |
| 54 extern const char kCloudPrintFileType[]; | 54 extern const char kCloudPrintFileType[]; |
| 55 extern const char kCloudPrintProxyId[]; | 55 extern const char kCloudPrintProxyId[]; |
| 56 extern const char kCloudPrintServiceURL[]; | 56 extern const char kCloudPrintServiceURL[]; |
| 57 extern const char kConflictingModulesCheck[]; | 57 extern const char kConflictingModulesCheck[]; |
| 58 extern const char kCountry[]; | 58 extern const char kCountry[]; |
| 59 extern const char kDebugDevToolsFrontend[]; | 59 extern const char kDebugDevToolsFrontend[]; |
| 60 extern const char kDebugEnableFrameToggle[]; |
| 60 extern const char kDebugPrint[]; | 61 extern const char kDebugPrint[]; |
| 61 extern const char kDeviceManagementUrl[]; | 62 extern const char kDeviceManagementUrl[]; |
| 62 extern const char kDiagnostics[]; | 63 extern const char kDiagnostics[]; |
| 63 extern const char kDisableAcceleratedLayers[]; | 64 extern const char kDisableAcceleratedLayers[]; |
| 64 extern const char kDisableAcceleratedVideo[]; | 65 extern const char kDisableAcceleratedVideo[]; |
| 65 extern const char kDisableAltWinstation[]; | 66 extern const char kDisableAltWinstation[]; |
| 66 extern const char kDisableAuthNegotiateCnameLookup[]; | 67 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 67 extern const char kDisableBackgroundMode[]; | 68 extern const char kDisableBackgroundMode[]; |
| 68 extern const char kDisableBackgroundNetworking[]; | 69 extern const char kDisableBackgroundNetworking[]; |
| 69 extern const char kDisableClientSidePhishingDetection[]; | 70 extern const char kDisableClientSidePhishingDetection[]; |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 #endif | 356 #endif |
| 356 | 357 |
| 357 bool IsPrintPreviewEnabled(); | 358 bool IsPrintPreviewEnabled(); |
| 358 | 359 |
| 359 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 360 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 360 // alphabetical order, or in one of the ifdefs (also in order in each section). | 361 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 361 | 362 |
| 362 } // namespace switches | 363 } // namespace switches |
| 363 | 364 |
| 364 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 365 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |