| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 extern const char kMetricsRecordingOnly[]; | 114 extern const char kMetricsRecordingOnly[]; |
| 115 extern const char kNaClProcess[]; | 115 extern const char kNaClProcess[]; |
| 116 extern const char kNewTabPage[]; | 116 extern const char kNewTabPage[]; |
| 117 extern const char kNoDefaultBrowserCheck[]; | 117 extern const char kNoDefaultBrowserCheck[]; |
| 118 extern const char kNoEvents[]; | 118 extern const char kNoEvents[]; |
| 119 extern const char kNoFirstRun[]; | 119 extern const char kNoFirstRun[]; |
| 120 extern const char kNoJsRandomness[]; | 120 extern const char kNoJsRandomness[]; |
| 121 extern const char kNoProxyServer[]; | 121 extern const char kNoProxyServer[]; |
| 122 extern const char kNoSandbox[]; | 122 extern const char kNoSandbox[]; |
| 123 extern const char kOmniBoxPopupCount[]; | 123 extern const char kOmniBoxPopupCount[]; |
| 124 extern const char kOpenInNewWindow[]; |
| 124 extern const char kPackExtension[]; | 125 extern const char kPackExtension[]; |
| 125 extern const char kPackExtensionKey[]; | 126 extern const char kPackExtensionKey[]; |
| 126 extern const char kParentProfile[]; | 127 extern const char kParentProfile[]; |
| 127 extern const char kPinnedTabCount[]; | 128 extern const char kPinnedTabCount[]; |
| 128 extern const char kPlaybackMode[]; | 129 extern const char kPlaybackMode[]; |
| 129 extern const char kPluginDataDir[]; | 130 extern const char kPluginDataDir[]; |
| 130 extern const char kPluginLauncher[]; | 131 extern const char kPluginLauncher[]; |
| 131 extern const char kPluginPath[]; | 132 extern const char kPluginPath[]; |
| 132 extern const char kPluginProcess[]; | 133 extern const char kPluginProcess[]; |
| 133 extern const char kPluginStartupDialog[]; | 134 extern const char kPluginStartupDialog[]; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 #ifndef NDEBUG | 214 #ifndef NDEBUG |
| 214 extern const char kGearsPluginPathOverride[]; | 215 extern const char kGearsPluginPathOverride[]; |
| 215 #endif | 216 #endif |
| 216 | 217 |
| 217 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 218 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 218 // alphabetical order, or in one of the ifdefs (also in order in each section). | 219 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 219 | 220 |
| 220 } // namespace switches | 221 } // namespace switches |
| 221 | 222 |
| 222 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 223 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |