| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 extern const char kChromeVersion[]; | 64 extern const char kChromeVersion[]; |
| 65 extern const char kCipherSuiteBlacklist[]; | 65 extern const char kCipherSuiteBlacklist[]; |
| 66 extern const char kClearTokenService[]; | 66 extern const char kClearTokenService[]; |
| 67 extern const char kCloudPrintDeleteFile[]; | 67 extern const char kCloudPrintDeleteFile[]; |
| 68 extern const char kCloudPrintFile[]; | 68 extern const char kCloudPrintFile[]; |
| 69 extern const char kCloudPrintJobTitle[]; | 69 extern const char kCloudPrintJobTitle[]; |
| 70 extern const char kCloudPrintFileType[]; | 70 extern const char kCloudPrintFileType[]; |
| 71 extern const char kCloudPrintPrintTicket[]; | 71 extern const char kCloudPrintPrintTicket[]; |
| 72 extern const char kCloudPrintSetupProxy[]; | 72 extern const char kCloudPrintSetupProxy[]; |
| 73 extern const char kCloudPrintServiceURL[]; | 73 extern const char kCloudPrintServiceURL[]; |
| 74 extern const char kComponentUpdater[]; | 74 extern const char kComponentUpdaterDebug[]; |
| 75 extern const char kConflictingModulesCheck[]; | 75 extern const char kConflictingModulesCheck[]; |
| 76 extern const char kContentSettings2[]; | 76 extern const char kContentSettings2[]; |
| 77 extern const char kCountry[]; | 77 extern const char kCountry[]; |
| 78 extern const char kCrashOnHangThreads[]; | 78 extern const char kCrashOnHangThreads[]; |
| 79 extern const char kCreateBrowserOnStartupForTests[]; | 79 extern const char kCreateBrowserOnStartupForTests[]; |
| 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[]; | 83 extern const char kDeviceManagementUrl[]; |
| 84 extern const char kDiagnostics[]; | 84 extern const char kDiagnostics[]; |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 #else | 460 #else |
| 461 extern const char kEnablePrintPreview[]; | 461 extern const char kEnablePrintPreview[]; |
| 462 #endif | 462 #endif |
| 463 | 463 |
| 464 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 464 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 465 // alphabetical order, or in one of the ifdefs (also in order in each section). | 465 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 466 | 466 |
| 467 } // namespace switches | 467 } // namespace switches |
| 468 | 468 |
| 469 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 469 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |