| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 extern const char kCloudPrintFile[]; | 62 extern const char kCloudPrintFile[]; |
| 63 extern const char kCloudPrintJobTitle[]; | 63 extern const char kCloudPrintJobTitle[]; |
| 64 extern const char kCloudPrintFileType[]; | 64 extern const char kCloudPrintFileType[]; |
| 65 extern const char kCloudPrintPrintTicket[]; | 65 extern const char kCloudPrintPrintTicket[]; |
| 66 extern const char kCloudPrintProxyId[]; | 66 extern const char kCloudPrintProxyId[]; |
| 67 extern const char kCloudPrintServiceURL[]; | 67 extern const char kCloudPrintServiceURL[]; |
| 68 extern const char kComponentUpdaterDebug[]; | 68 extern const char kComponentUpdaterDebug[]; |
| 69 extern const char kConflictingModulesCheck[]; | 69 extern const char kConflictingModulesCheck[]; |
| 70 extern const char kContentSettings2[]; | 70 extern const char kContentSettings2[]; |
| 71 extern const char kCountry[]; | 71 extern const char kCountry[]; |
| 72 extern const char kCrashOnHangSeconds[]; | |
| 73 extern const char kCrashOnHangThreads[]; | 72 extern const char kCrashOnHangThreads[]; |
| 74 extern const char kCreateBrowserOnStartupForTests[]; | 73 extern const char kCreateBrowserOnStartupForTests[]; |
| 75 extern const char kDebugEnableFrameToggle[]; | 74 extern const char kDebugEnableFrameToggle[]; |
| 76 extern const char kDebugPackedApps[]; | 75 extern const char kDebugPackedApps[]; |
| 77 extern const char kDebugPrint[]; | 76 extern const char kDebugPrint[]; |
| 78 extern const char kDeviceManagementUrl[]; | 77 extern const char kDeviceManagementUrl[]; |
| 79 extern const char kDiagnostics[]; | 78 extern const char kDiagnostics[]; |
| 80 extern const char kDisableAsyncDns[]; | 79 extern const char kDisableAsyncDns[]; |
| 81 extern const char kDisableAuthNegotiateCnameLookup[]; | 80 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 82 extern const char kDisableBackgroundMode[]; | 81 extern const char kDisableBackgroundMode[]; |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 #else | 471 #else |
| 473 extern const char kEnablePrintPreview[]; | 472 extern const char kEnablePrintPreview[]; |
| 474 #endif | 473 #endif |
| 475 | 474 |
| 476 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 475 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 477 // alphabetical order, or in one of the ifdefs (also in order in each section). | 476 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 478 | 477 |
| 479 } // namespace switches | 478 } // namespace switches |
| 480 | 479 |
| 481 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 480 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |