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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 extern const char kLoadExtension[]; | 273 extern const char kLoadExtension[]; |
274 extern const char kMakeDefaultBrowser[]; | 274 extern const char kMakeDefaultBrowser[]; |
275 extern const char kManagedUserSyncToken[]; | 275 extern const char kManagedUserSyncToken[]; |
276 extern const char kMediaCacheSize[]; | 276 extern const char kMediaCacheSize[]; |
277 extern const char kMemoryProfiling[]; | 277 extern const char kMemoryProfiling[]; |
278 extern const char kMessageLoopHistogrammer[]; | 278 extern const char kMessageLoopHistogrammer[]; |
279 extern const char kMetricsRecordingOnly[]; | 279 extern const char kMetricsRecordingOnly[]; |
280 extern const char kMultiProfiles[]; | 280 extern const char kMultiProfiles[]; |
281 extern const char kNativeMessagingHosts[]; | 281 extern const char kNativeMessagingHosts[]; |
282 extern const char kNetLogLevel[]; | 282 extern const char kNetLogLevel[]; |
| 283 extern const char kNewProfileIsSupervised[]; |
283 extern const char kNewProfileManagement[]; | 284 extern const char kNewProfileManagement[]; |
284 extern const char kNoDefaultBrowserCheck[]; | 285 extern const char kNoDefaultBrowserCheck[]; |
285 extern const char kNoDisplayingInsecureContent[]; | 286 extern const char kNoDisplayingInsecureContent[]; |
286 extern const char kNoEvents[]; | 287 extern const char kNoEvents[]; |
287 extern const char kNoExperiments[]; | 288 extern const char kNoExperiments[]; |
288 extern const char kNoFirstRun[]; | 289 extern const char kNoFirstRun[]; |
289 extern const char kNoJsRandomness[]; | 290 extern const char kNoJsRandomness[]; |
290 extern const char kNoNetworkProfileWarning[]; | 291 extern const char kNoNetworkProfileWarning[]; |
291 extern const char kNoProxyServer[]; | 292 extern const char kNoProxyServer[]; |
292 extern const char kNoPings[]; | 293 extern const char kNoPings[]; |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 #else | 481 #else |
481 extern const char kEnablePrintPreview[]; | 482 extern const char kEnablePrintPreview[]; |
482 #endif | 483 #endif |
483 | 484 |
484 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 485 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
485 // alphabetical order, or in one of the ifdefs (also in order in each section). | 486 // alphabetical order, or in one of the ifdefs (also in order in each section). |
486 | 487 |
487 } // namespace switches | 488 } // namespace switches |
488 | 489 |
489 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 490 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |