| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 extern const char kSSLVersionMax[]; | 348 extern const char kSSLVersionMax[]; |
| 349 extern const char kSSLVersionMin[]; | 349 extern const char kSSLVersionMin[]; |
| 350 extern const char kStartMaximized[]; | 350 extern const char kStartMaximized[]; |
| 351 extern const char kSuggestionNtpFilterWidth[]; | 351 extern const char kSuggestionNtpFilterWidth[]; |
| 352 extern const char kSuggestionNtpGaussianFilter[]; | 352 extern const char kSuggestionNtpGaussianFilter[]; |
| 353 extern const char kSuggestionNtpLinearFilter[]; | 353 extern const char kSuggestionNtpLinearFilter[]; |
| 354 extern const char kSyncAllowInsecureXmppConnection[]; | 354 extern const char kSyncAllowInsecureXmppConnection[]; |
| 355 extern const char kSyncInvalidateXmppLogin[]; | 355 extern const char kSyncInvalidateXmppLogin[]; |
| 356 extern const char kSyncKeystoreEncryption[]; | 356 extern const char kSyncKeystoreEncryption[]; |
| 357 extern const char kSyncShortInitialRetryOverride[]; | 357 extern const char kSyncShortInitialRetryOverride[]; |
| 358 extern const char kSyncNotificationMethod[]; | |
| 359 extern const char kSyncNotificationHostPort[]; | 358 extern const char kSyncNotificationHostPort[]; |
| 360 extern const char kSyncServiceURL[]; | 359 extern const char kSyncServiceURL[]; |
| 361 extern const char kSyncTabFavicons[]; | 360 extern const char kSyncTabFavicons[]; |
| 362 extern const char kSyncThrowUnrecoverableError[]; | 361 extern const char kSyncThrowUnrecoverableError[]; |
| 363 extern const char kSyncTrySsltcpFirstForXmpp[]; | 362 extern const char kSyncTrySsltcpFirstForXmpp[]; |
| 364 extern const char kSyncEnableDeferredStartup[]; | 363 extern const char kSyncEnableDeferredStartup[]; |
| 365 extern const char kSyncfsEnableDirectoryOperation[]; | 364 extern const char kSyncfsEnableDirectoryOperation[]; |
| 366 extern const char kTabBrowserDragging[]; | 365 extern const char kTabBrowserDragging[]; |
| 367 extern const char kTabCapture[]; | 366 extern const char kTabCapture[]; |
| 368 extern const char kTestNaClSandbox[]; | 367 extern const char kTestNaClSandbox[]; |
| (...skipping 80 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 |