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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 extern const char kSSLVersionMax[]; | 349 extern const char kSSLVersionMax[]; |
350 extern const char kSSLVersionMin[]; | 350 extern const char kSSLVersionMin[]; |
351 extern const char kStartMaximized[]; | 351 extern const char kStartMaximized[]; |
352 extern const char kSuggestionNtpFilterWidth[]; | 352 extern const char kSuggestionNtpFilterWidth[]; |
353 extern const char kSuggestionNtpGaussianFilter[]; | 353 extern const char kSuggestionNtpGaussianFilter[]; |
354 extern const char kSuggestionNtpLinearFilter[]; | 354 extern const char kSuggestionNtpLinearFilter[]; |
355 extern const char kSyncAllowInsecureXmppConnection[]; | 355 extern const char kSyncAllowInsecureXmppConnection[]; |
356 extern const char kSyncInvalidateXmppLogin[]; | 356 extern const char kSyncInvalidateXmppLogin[]; |
357 extern const char kSyncKeystoreEncryption[]; | 357 extern const char kSyncKeystoreEncryption[]; |
358 extern const char kSyncShortInitialRetryOverride[]; | 358 extern const char kSyncShortInitialRetryOverride[]; |
| 359 extern const char kSyncNotificationMethod[]; |
359 extern const char kSyncNotificationHostPort[]; | 360 extern const char kSyncNotificationHostPort[]; |
360 extern const char kSyncServiceURL[]; | 361 extern const char kSyncServiceURL[]; |
361 extern const char kSyncTabFavicons[]; | 362 extern const char kSyncTabFavicons[]; |
362 extern const char kSyncThrowUnrecoverableError[]; | 363 extern const char kSyncThrowUnrecoverableError[]; |
363 extern const char kSyncTrySsltcpFirstForXmpp[]; | 364 extern const char kSyncTrySsltcpFirstForXmpp[]; |
364 extern const char kSyncEnableDeferredStartup[]; | 365 extern const char kSyncEnableDeferredStartup[]; |
365 extern const char kSyncDisableOAuth2Token[]; | 366 extern const char kSyncDisableOAuth2Token[]; |
366 extern const char kSyncfsEnableDirectoryOperation[]; | 367 extern const char kSyncfsEnableDirectoryOperation[]; |
367 extern const char kTabBrowserDragging[]; | 368 extern const char kTabBrowserDragging[]; |
368 extern const char kTabCapture[]; | 369 extern const char kTabCapture[]; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 #else | 455 #else |
455 extern const char kEnablePrintPreview[]; | 456 extern const char kEnablePrintPreview[]; |
456 #endif | 457 #endif |
457 | 458 |
458 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 459 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
459 // alphabetical order, or in one of the ifdefs (also in order in each section). | 460 // alphabetical order, or in one of the ifdefs (also in order in each section). |
460 | 461 |
461 } // namespace switches | 462 } // namespace switches |
462 | 463 |
463 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 464 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |