| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 10 matching lines...) Expand all Loading... |
| 21 // alongside the definition of their values in the .cc file. | 21 // alongside the definition of their values in the .cc file. |
| 22 extern const char kActivateOnLaunch[]; | 22 extern const char kActivateOnLaunch[]; |
| 23 extern const char kAllowSandboxDebugging[]; | 23 extern const char kAllowSandboxDebugging[]; |
| 24 extern const char kAlwaysEnableDevTools[]; | 24 extern const char kAlwaysEnableDevTools[]; |
| 25 extern const char kApp[]; | 25 extern const char kApp[]; |
| 26 extern const char kAutomationClientChannelID[]; | 26 extern const char kAutomationClientChannelID[]; |
| 27 extern const char kBookmarkMenu[]; | 27 extern const char kBookmarkMenu[]; |
| 28 extern const char kBrowserAssertTest[]; | 28 extern const char kBrowserAssertTest[]; |
| 29 extern const char kBrowserCrashTest[]; | 29 extern const char kBrowserCrashTest[]; |
| 30 extern const char kBrowserSubprocessPath[]; | 30 extern const char kBrowserSubprocessPath[]; |
| 31 extern const char kChromeFrame[]; |
| 31 extern const char kCountry[]; | 32 extern const char kCountry[]; |
| 32 extern const char kDebugPrint[]; | 33 extern const char kDebugPrint[]; |
| 33 extern const char kDiagnostics[]; | 34 extern const char kDiagnostics[]; |
| 34 extern const char kDisableAltWinstation[]; | 35 extern const char kDisableAltWinstation[]; |
| 35 extern const char kDisableAudio[]; | 36 extern const char kDisableAudio[]; |
| 36 extern const char kDisableByteRangeSupport[]; | 37 extern const char kDisableByteRangeSupport[]; |
| 37 extern const char kDisableCustomJumpList[]; | 38 extern const char kDisableCustomJumpList[]; |
| 38 extern const char kDisableDevTools[]; | 39 extern const char kDisableDevTools[]; |
| 39 extern const char kDisableExtensions[]; | 40 extern const char kDisableExtensions[]; |
| 40 extern const char kDisableHangMonitor[]; | 41 extern const char kDisableHangMonitor[]; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 #endif | 201 #endif |
| 201 | 202 |
| 202 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 203 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 203 // alphabetical order, or in one of the ifdefs (also in order in each section). | 204 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 204 | 205 |
| 205 extern const char kEnableNewAutoFill[]; | 206 extern const char kEnableNewAutoFill[]; |
| 206 | 207 |
| 207 } // namespace switches | 208 } // namespace switches |
| 208 | 209 |
| 209 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 210 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |