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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 extern const char kSyncAllowInsecureXmppConnection[]; | 345 extern const char kSyncAllowInsecureXmppConnection[]; |
346 extern const char kSyncInvalidateXmppLogin[]; | 346 extern const char kSyncInvalidateXmppLogin[]; |
347 extern const char kSyncKeystoreEncryption[]; | 347 extern const char kSyncKeystoreEncryption[]; |
348 extern const char kSyncShortInitialRetryOverride[]; | 348 extern const char kSyncShortInitialRetryOverride[]; |
349 extern const char kSyncNotificationMethod[]; | 349 extern const char kSyncNotificationMethod[]; |
350 extern const char kSyncNotificationHostPort[]; | 350 extern const char kSyncNotificationHostPort[]; |
351 extern const char kSyncServiceURL[]; | 351 extern const char kSyncServiceURL[]; |
352 extern const char kSyncTabFavicons[]; | 352 extern const char kSyncTabFavicons[]; |
353 extern const char kSyncThrowUnrecoverableError[]; | 353 extern const char kSyncThrowUnrecoverableError[]; |
354 extern const char kSyncTrySsltcpFirstForXmpp[]; | 354 extern const char kSyncTrySsltcpFirstForXmpp[]; |
| 355 extern const char kSyncEnableDeferredStartup[]; |
355 extern const char kTabBrowserDragging[]; | 356 extern const char kTabBrowserDragging[]; |
356 extern const char kTabCapture[]; | 357 extern const char kTabCapture[]; |
357 extern const char kTestNaClSandbox[]; | 358 extern const char kTestNaClSandbox[]; |
358 extern const char kTestName[]; | 359 extern const char kTestName[]; |
359 extern const char kTestType[]; | 360 extern const char kTestType[]; |
360 extern const char kTestingChannelID[]; | 361 extern const char kTestingChannelID[]; |
361 extern const char kTrustedSpdyProxy[]; | 362 extern const char kTrustedSpdyProxy[]; |
362 extern const char kTryChromeAgain[]; | 363 extern const char kTryChromeAgain[]; |
363 extern const char kUninstall[]; | 364 extern const char kUninstall[]; |
364 extern const char kUseSpdy[]; | 365 extern const char kUseSpdy[]; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 #else | 478 #else |
478 extern const char kEnablePrintPreview[]; | 479 extern const char kEnablePrintPreview[]; |
479 #endif | 480 #endif |
480 | 481 |
481 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 482 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
482 // alphabetical order, or in one of the ifdefs (also in order in each section). | 483 // alphabetical order, or in one of the ifdefs (also in order in each section). |
483 | 484 |
484 } // namespace switches | 485 } // namespace switches |
485 | 486 |
486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 487 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |