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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 extern const char kSpeculativeResourcePrefetchingLearning[]; | 326 extern const char kSpeculativeResourcePrefetchingLearning[]; |
327 extern const char kSSLVersionMax[]; | 327 extern const char kSSLVersionMax[]; |
328 extern const char kSSLVersionMin[]; | 328 extern const char kSSLVersionMin[]; |
329 extern const char kStartMaximized[]; | 329 extern const char kStartMaximized[]; |
330 extern const char kSuggestionNtpFilterWidth[]; | 330 extern const char kSuggestionNtpFilterWidth[]; |
331 extern const char kSuggestionNtpGaussianFilter[]; | 331 extern const char kSuggestionNtpGaussianFilter[]; |
332 extern const char kSuggestionNtpLinearFilter[]; | 332 extern const char kSuggestionNtpLinearFilter[]; |
333 extern const char kSyncAllowInsecureXmppConnection[]; | 333 extern const char kSyncAllowInsecureXmppConnection[]; |
334 extern const char kSyncInvalidateXmppLogin[]; | 334 extern const char kSyncInvalidateXmppLogin[]; |
335 extern const char kSyncKeystoreEncryption[]; | 335 extern const char kSyncKeystoreEncryption[]; |
| 336 extern const char kSyncShortInitialRetryOverride[]; |
336 extern const char kSyncNotificationMethod[]; | 337 extern const char kSyncNotificationMethod[]; |
337 extern const char kSyncNotificationHostPort[]; | 338 extern const char kSyncNotificationHostPort[]; |
338 extern const char kSyncServiceURL[]; | 339 extern const char kSyncServiceURL[]; |
339 extern const char kSyncTabFavicons[]; | 340 extern const char kSyncTabFavicons[]; |
340 extern const char kSyncThrowUnrecoverableError[]; | 341 extern const char kSyncThrowUnrecoverableError[]; |
341 extern const char kSyncTrySsltcpFirstForXmpp[]; | 342 extern const char kSyncTrySsltcpFirstForXmpp[]; |
342 extern const char kTabBrowserDragging[]; | 343 extern const char kTabBrowserDragging[]; |
343 extern const char kTestNaClSandbox[]; | 344 extern const char kTestNaClSandbox[]; |
344 extern const char kTestName[]; | 345 extern const char kTestName[]; |
345 extern const char kTestType[]; | 346 extern const char kTestType[]; |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 #else | 447 #else |
447 extern const char kEnablePrintPreview[]; | 448 extern const char kEnablePrintPreview[]; |
448 #endif | 449 #endif |
449 | 450 |
450 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 451 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
451 // alphabetical order, or in one of the ifdefs (also in order in each section). | 452 // alphabetical order, or in one of the ifdefs (also in order in each section). |
452 | 453 |
453 } // namespace switches | 454 } // namespace switches |
454 | 455 |
455 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 456 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |