| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 extern const char kInvalidationUseGCMChannel[]; | 221 extern const char kInvalidationUseGCMChannel[]; |
| 222 extern const char kIpcFuzzerTestcase[]; | 222 extern const char kIpcFuzzerTestcase[]; |
| 223 extern const char kKeepAliveForTest[]; | 223 extern const char kKeepAliveForTest[]; |
| 224 extern const char kKioskMode[]; | 224 extern const char kKioskMode[]; |
| 225 extern const char kKioskModePrinting[]; | 225 extern const char kKioskModePrinting[]; |
| 226 extern const char kLedgerServer[]; | 226 extern const char kLedgerServer[]; |
| 227 extern const char kLedgerTracingToken[]; | 227 extern const char kLedgerTracingToken[]; |
| 228 extern const char kLimitedInstallFromWebstore[]; | 228 extern const char kLimitedInstallFromWebstore[]; |
| 229 extern const char kLoadComponentExtension[]; | 229 extern const char kLoadComponentExtension[]; |
| 230 extern const char kLoadExtension[]; | 230 extern const char kLoadExtension[]; |
| 231 extern const char kMalwareInterstitialVersionV2[]; | 231 extern const char kMalwareInterstitialV2[]; |
| 232 extern const char kMalwareInterstitialVersionV3[]; | 232 extern const char kMalwareInterstitialV3[]; |
| 233 extern const char kMalwareInterstitialV3Advice[]; |
| 234 extern const char kMalwareInterstitialV3Social[]; |
| 235 extern const char kMalwareInterstitialV3NotRecommend[]; |
| 236 extern const char kMalwareInterstitialV3History[]; |
| 233 extern const char kMakeDefaultBrowser[]; | 237 extern const char kMakeDefaultBrowser[]; |
| 234 extern const char kSupervisedUserId[]; | 238 extern const char kSupervisedUserId[]; |
| 235 extern const char kSupervisedUserSyncToken[]; | 239 extern const char kSupervisedUserSyncToken[]; |
| 236 extern const char kManualEnhancedBookmarks[]; | 240 extern const char kManualEnhancedBookmarks[]; |
| 237 extern const char kManualEnhancedBookmarksOptout[]; | 241 extern const char kManualEnhancedBookmarksOptout[]; |
| 238 extern const char kMediaCacheSize[]; | 242 extern const char kMediaCacheSize[]; |
| 239 extern const char kMemoryProfiling[]; | 243 extern const char kMemoryProfiling[]; |
| 240 extern const char kMessageLoopHistogrammer[]; | 244 extern const char kMessageLoopHistogrammer[]; |
| 241 extern const char kMetricsRecordingOnly[]; | 245 extern const char kMetricsRecordingOnly[]; |
| 242 extern const char kNetLogLevel[]; | 246 extern const char kNetLogLevel[]; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 #endif | 411 #endif |
| 408 | 412 |
| 409 bool SettingsWindowEnabled(); | 413 bool SettingsWindowEnabled(); |
| 410 | 414 |
| 411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 412 // alphabetical order, or in one of the ifdefs (also in order in each section). | 416 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 413 | 417 |
| 414 } // namespace switches | 418 } // namespace switches |
| 415 | 419 |
| 416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |