| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 extern const char kIgnoreUrlFetcherCertRequests[]; | 211 extern const char kIgnoreUrlFetcherCertRequests[]; |
| 212 extern const char kIncognito[]; | 212 extern const char kIncognito[]; |
| 213 extern const char kInstallChromeApp[]; | 213 extern const char kInstallChromeApp[]; |
| 214 extern const char kInstallFromWebstore[]; | 214 extern const char kInstallFromWebstore[]; |
| 215 extern const char kInstantProcess[]; | 215 extern const char kInstantProcess[]; |
| 216 extern const char kInvalidationUseGCMChannel[]; | 216 extern const char kInvalidationUseGCMChannel[]; |
| 217 extern const char kIpcFuzzerTestcase[]; | 217 extern const char kIpcFuzzerTestcase[]; |
| 218 extern const char kKeepAliveForTest[]; | 218 extern const char kKeepAliveForTest[]; |
| 219 extern const char kKioskMode[]; | 219 extern const char kKioskMode[]; |
| 220 extern const char kKioskModePrinting[]; | 220 extern const char kKioskModePrinting[]; |
| 221 extern const char kLedgerServer[]; | |
| 222 extern const char kLedgerTracingToken[]; | |
| 223 extern const char kLimitedInstallFromWebstore[]; | 221 extern const char kLimitedInstallFromWebstore[]; |
| 224 extern const char kLoadComponentExtension[]; | 222 extern const char kLoadComponentExtension[]; |
| 225 extern const char kLoadExtension[]; | 223 extern const char kLoadExtension[]; |
| 226 extern const char kMakeDefaultBrowser[]; | 224 extern const char kMakeDefaultBrowser[]; |
| 227 extern const char kManualEnhancedBookmarks[]; | 225 extern const char kManualEnhancedBookmarks[]; |
| 228 extern const char kManualEnhancedBookmarksOptout[]; | 226 extern const char kManualEnhancedBookmarksOptout[]; |
| 229 extern const char kMediaCacheSize[]; | 227 extern const char kMediaCacheSize[]; |
| 230 extern const char kMessageLoopHistogrammer[]; | 228 extern const char kMessageLoopHistogrammer[]; |
| 231 extern const char kMetricsRecordingOnly[]; | 229 extern const char kMetricsRecordingOnly[]; |
| 232 extern const char kNetLogLevel[]; | 230 extern const char kNetLogLevel[]; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 | 396 |
| 399 bool AboutInSettingsEnabled(); | 397 bool AboutInSettingsEnabled(); |
| 400 bool SettingsWindowEnabled(); | 398 bool SettingsWindowEnabled(); |
| 401 | 399 |
| 402 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 403 // alphabetical order, or in one of the ifdefs (also in order in each section). | 401 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 404 | 402 |
| 405 } // namespace switches | 403 } // namespace switches |
| 406 | 404 |
| 407 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |