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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 extern const char kIgnoreUrlFetcherCertRequests[]; | 228 extern const char kIgnoreUrlFetcherCertRequests[]; |
229 extern const char kIncognito[]; | 229 extern const char kIncognito[]; |
230 extern const char kInstallChromeApp[]; | 230 extern const char kInstallChromeApp[]; |
231 extern const char kInstallFromWebstore[]; | 231 extern const char kInstallFromWebstore[]; |
232 extern const char kInstantProcess[]; | 232 extern const char kInstantProcess[]; |
233 extern const char kInvalidationUseGCMChannel[]; | 233 extern const char kInvalidationUseGCMChannel[]; |
234 extern const char kIpcFuzzerTestcase[]; | 234 extern const char kIpcFuzzerTestcase[]; |
235 extern const char kKeepAliveForTest[]; | 235 extern const char kKeepAliveForTest[]; |
236 extern const char kKioskMode[]; | 236 extern const char kKioskMode[]; |
237 extern const char kKioskModePrinting[]; | 237 extern const char kKioskModePrinting[]; |
| 238 extern const char kLedgerServer[]; |
| 239 extern const char kLedgerTracingToken[]; |
238 extern const char kLimitedInstallFromWebstore[]; | 240 extern const char kLimitedInstallFromWebstore[]; |
239 extern const char kLoadComponentExtension[]; | 241 extern const char kLoadComponentExtension[]; |
240 extern const char kLoadExtension[]; | 242 extern const char kLoadExtension[]; |
241 extern const char kMakeDefaultBrowser[]; | 243 extern const char kMakeDefaultBrowser[]; |
242 extern const char kManagedUserId[]; | 244 extern const char kManagedUserId[]; |
243 extern const char kManagedUserSyncToken[]; | 245 extern const char kManagedUserSyncToken[]; |
244 extern const char kManualEnhancedBookmarks[]; | 246 extern const char kManualEnhancedBookmarks[]; |
245 extern const char kManualEnhancedBookmarksOptout[]; | 247 extern const char kManualEnhancedBookmarksOptout[]; |
246 extern const char kMediaCacheSize[]; | 248 extern const char kMediaCacheSize[]; |
247 extern const char kMemoryProfiling[]; | 249 extern const char kMemoryProfiling[]; |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 #else | 425 #else |
424 extern const char kEnablePrintPreview[]; | 426 extern const char kEnablePrintPreview[]; |
425 #endif | 427 #endif |
426 | 428 |
427 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 429 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
428 // alphabetical order, or in one of the ifdefs (also in order in each section). | 430 // alphabetical order, or in one of the ifdefs (also in order in each section). |
429 | 431 |
430 } // namespace switches | 432 } // namespace switches |
431 | 433 |
432 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 434 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |