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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 extern const char kSyncAllowInsecureXmppConnection[]; | 337 extern const char kSyncAllowInsecureXmppConnection[]; |
338 extern const char kSyncInvalidateXmppLogin[]; | 338 extern const char kSyncInvalidateXmppLogin[]; |
339 extern const char kSyncKeystoreEncryption[]; | 339 extern const char kSyncKeystoreEncryption[]; |
340 extern const char kSyncShortInitialRetryOverride[]; | 340 extern const char kSyncShortInitialRetryOverride[]; |
341 extern const char kSyncNotificationMethod[]; | 341 extern const char kSyncNotificationMethod[]; |
342 extern const char kSyncNotificationHostPort[]; | 342 extern const char kSyncNotificationHostPort[]; |
343 extern const char kSyncServiceURL[]; | 343 extern const char kSyncServiceURL[]; |
344 extern const char kSyncTabFavicons[]; | 344 extern const char kSyncTabFavicons[]; |
345 extern const char kSyncThrowUnrecoverableError[]; | 345 extern const char kSyncThrowUnrecoverableError[]; |
346 extern const char kSyncTrySsltcpFirstForXmpp[]; | 346 extern const char kSyncTrySsltcpFirstForXmpp[]; |
| 347 extern const char kSyncEnableDeferredStartup[]; |
347 extern const char kTabBrowserDragging[]; | 348 extern const char kTabBrowserDragging[]; |
348 extern const char kTabCapture[]; | 349 extern const char kTabCapture[]; |
349 extern const char kTestNaClSandbox[]; | 350 extern const char kTestNaClSandbox[]; |
350 extern const char kTestName[]; | 351 extern const char kTestName[]; |
351 extern const char kTestType[]; | 352 extern const char kTestType[]; |
352 extern const char kTestingChannelID[]; | 353 extern const char kTestingChannelID[]; |
353 extern const char kTrustedSpdyProxy[]; | 354 extern const char kTrustedSpdyProxy[]; |
354 extern const char kTryChromeAgain[]; | 355 extern const char kTryChromeAgain[]; |
355 extern const char kUninstall[]; | 356 extern const char kUninstall[]; |
356 extern const char kUseSpdy[]; | 357 extern const char kUseSpdy[]; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 #else | 473 #else |
473 extern const char kEnablePrintPreview[]; | 474 extern const char kEnablePrintPreview[]; |
474 #endif | 475 #endif |
475 | 476 |
476 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 477 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
477 // alphabetical order, or in one of the ifdefs (also in order in each section). | 478 // alphabetical order, or in one of the ifdefs (also in order in each section). |
478 | 479 |
479 } // namespace switches | 480 } // namespace switches |
480 | 481 |
481 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 482 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |