| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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" |
| 11 #include "base/base_switches.h" | 11 #include "base/base_switches.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 extern const char kMetricsRecordingOnly[]; | 127 extern const char kMetricsRecordingOnly[]; |
| 128 extern const char kNaClBrokerProcess[]; | 128 extern const char kNaClBrokerProcess[]; |
| 129 extern const char kNaClLoaderProcess[]; | 129 extern const char kNaClLoaderProcess[]; |
| 130 extern const char kNaClStartupDialog[]; | 130 extern const char kNaClStartupDialog[]; |
| 131 extern const char kNewTabPage[]; | 131 extern const char kNewTabPage[]; |
| 132 extern const char kNoDefaultBrowserCheck[]; | 132 extern const char kNoDefaultBrowserCheck[]; |
| 133 extern const char kNoEvents[]; | 133 extern const char kNoEvents[]; |
| 134 extern const char kNoFirstRun[]; | 134 extern const char kNoFirstRun[]; |
| 135 extern const char kNoJsRandomness[]; | 135 extern const char kNoJsRandomness[]; |
| 136 extern const char kNoProxyServer[]; | 136 extern const char kNoProxyServer[]; |
| 137 extern const char kNoReferrers[]; |
| 137 extern const char kNoSandbox[]; | 138 extern const char kNoSandbox[]; |
| 138 extern const char kOmniBoxPopupCount[]; | 139 extern const char kOmniBoxPopupCount[]; |
| 139 extern const char kOpenInNewWindow[]; | 140 extern const char kOpenInNewWindow[]; |
| 140 extern const char kPackExtension[]; | 141 extern const char kPackExtension[]; |
| 141 extern const char kPackExtensionKey[]; | 142 extern const char kPackExtensionKey[]; |
| 142 extern const char kParentProfile[]; | 143 extern const char kParentProfile[]; |
| 143 extern const char kPlaybackMode[]; | 144 extern const char kPlaybackMode[]; |
| 144 extern const char kPluginDataDir[]; | 145 extern const char kPluginDataDir[]; |
| 145 extern const char kPluginLauncher[]; | 146 extern const char kPluginLauncher[]; |
| 146 extern const char kPluginPath[]; | 147 extern const char kPluginPath[]; |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 extern const char kGearsPluginPathOverride[]; | 236 extern const char kGearsPluginPathOverride[]; |
| 236 extern const char kInvalidateSyncLogin[]; | 237 extern const char kInvalidateSyncLogin[]; |
| 237 #endif | 238 #endif |
| 238 | 239 |
| 239 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 240 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 240 // alphabetical order, or in one of the ifdefs (also in order in each section). | 241 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 241 | 242 |
| 242 } // namespace switches | 243 } // namespace switches |
| 243 | 244 |
| 244 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 245 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |