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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 kMakeDefaultBrowser[]; | 231 extern const char kMakeDefaultBrowser[]; |
232 extern const char kMalwareInterstitialV2[]; | |
233 extern const char kMalwareInterstitialV3[]; | |
234 extern const char kMalwareInterstitialV3Advice[]; | |
235 extern const char kMalwareInterstitialV3Social[]; | |
236 extern const char kMalwareInterstitialV3NotRecommend[]; | |
237 extern const char kMalwareInterstitialV3History[]; | |
238 extern const char kManualEnhancedBookmarks[]; | 232 extern const char kManualEnhancedBookmarks[]; |
239 extern const char kManualEnhancedBookmarksOptout[]; | 233 extern const char kManualEnhancedBookmarksOptout[]; |
240 extern const char kMediaCacheSize[]; | 234 extern const char kMediaCacheSize[]; |
241 extern const char kMessageLoopHistogrammer[]; | 235 extern const char kMessageLoopHistogrammer[]; |
242 extern const char kMetricsRecordingOnly[]; | 236 extern const char kMetricsRecordingOnly[]; |
243 extern const char kNetLogLevel[]; | 237 extern const char kNetLogLevel[]; |
244 extern const char kNoDefaultBrowserCheck[]; | 238 extern const char kNoDefaultBrowserCheck[]; |
245 extern const char kNoDisplayingInsecureContent[]; | 239 extern const char kNoDisplayingInsecureContent[]; |
246 extern const char kNoEvents[]; | 240 extern const char kNoEvents[]; |
247 extern const char kNoExperiments[]; | 241 extern const char kNoExperiments[]; |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 #endif | 401 #endif |
408 | 402 |
409 bool SettingsWindowEnabled(); | 403 bool SettingsWindowEnabled(); |
410 | 404 |
411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 405 // 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). | 406 // alphabetical order, or in one of the ifdefs (also in order in each section). |
413 | 407 |
414 } // namespace switches | 408 } // namespace switches |
415 | 409 |
416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |