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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 kMalwareInterstitialVersionV2[]; |
232 extern const char kMalwareInterstitialVersionV3[]; | 232 extern const char kMalwareInterstitialVersionV3[]; |
233 extern const char kMakeDefaultBrowser[]; | 233 extern const char kMakeDefaultBrowser[]; |
234 extern const char kSupervisedUserId[]; | 234 extern const char kSupervisedUserId[]; |
235 extern const char kSupervisedUserSyncToken[]; | 235 extern const char kSupervisedUserSyncToken[]; |
236 extern const char kManualEnhancedBookmarks[]; | 236 extern const char kManualEnhancedBookmarks[]; |
237 extern const char kManualEnhancedBookmarksOptout[]; | 237 extern const char kManualEnhancedBookmarksOptout[]; |
238 extern const char kMediaCacheSize[]; | 238 extern const char kMediaCacheSize[]; |
239 extern const char kMemoryProfiling[]; | |
240 extern const char kMessageLoopHistogrammer[]; | 239 extern const char kMessageLoopHistogrammer[]; |
241 extern const char kMetricsRecordingOnly[]; | 240 extern const char kMetricsRecordingOnly[]; |
242 extern const char kNetLogLevel[]; | 241 extern const char kNetLogLevel[]; |
243 extern const char kNoDefaultBrowserCheck[]; | 242 extern const char kNoDefaultBrowserCheck[]; |
244 extern const char kNoDisplayingInsecureContent[]; | 243 extern const char kNoDisplayingInsecureContent[]; |
245 extern const char kNoEvents[]; | 244 extern const char kNoEvents[]; |
246 extern const char kNoExperiments[]; | 245 extern const char kNoExperiments[]; |
247 extern const char kNoFirstRun[]; | 246 extern const char kNoFirstRun[]; |
248 extern const char kNoNetworkProfileWarning[]; | 247 extern const char kNoNetworkProfileWarning[]; |
249 extern const char kNoProxyServer[]; | 248 extern const char kNoProxyServer[]; |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 #endif | 406 #endif |
408 | 407 |
409 bool SettingsWindowEnabled(); | 408 bool SettingsWindowEnabled(); |
410 | 409 |
411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 410 // 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). | 411 // alphabetical order, or in one of the ifdefs (also in order in each section). |
413 | 412 |
414 } // namespace switches | 413 } // namespace switches |
415 | 414 |
416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |