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[]; | |
360 extern const char kSyncNotificationHostPort[]; | 359 extern const char kSyncNotificationHostPort[]; |
361 extern const char kSyncServiceURL[]; | 360 extern const char kSyncServiceURL[]; |
362 extern const char kSyncTabFavicons[]; | 361 extern const char kSyncTabFavicons[]; |
363 extern const char kSyncThrowUnrecoverableError[]; | 362 extern const char kSyncThrowUnrecoverableError[]; |
364 extern const char kSyncTrySsltcpFirstForXmpp[]; | 363 extern const char kSyncTrySsltcpFirstForXmpp[]; |
365 extern const char kSyncEnableDeferredStartup[]; | 364 extern const char kSyncEnableDeferredStartup[]; |
366 extern const char kSyncfsEnableDirectoryOperation[]; | 365 extern const char kSyncfsEnableDirectoryOperation[]; |
367 extern const char kTabBrowserDragging[]; | 366 extern const char kTabBrowserDragging[]; |
368 extern const char kTabCapture[]; | 367 extern const char kTabCapture[]; |
369 extern const char kTestNaClSandbox[]; | 368 extern const char kTestNaClSandbox[]; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 #else | 448 #else |
450 extern const char kEnablePrintPreview[]; | 449 extern const char kEnablePrintPreview[]; |
451 #endif | 450 #endif |
452 | 451 |
453 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 452 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
454 // alphabetical order, or in one of the ifdefs (also in order in each section). | 453 // alphabetical order, or in one of the ifdefs (also in order in each section). |
455 | 454 |
456 } // namespace switches | 455 } // namespace switches |
457 | 456 |
458 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 457 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |