| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 extern const char kSyncInvalidateXmppLogin[]; | 359 extern const char kSyncInvalidateXmppLogin[]; |
| 360 extern const char kSyncKeystoreEncryption[]; | 360 extern const char kSyncKeystoreEncryption[]; |
| 361 extern const char kSyncShortInitialRetryOverride[]; | 361 extern const char kSyncShortInitialRetryOverride[]; |
| 362 extern const char kSyncNotificationMethod[]; | 362 extern const char kSyncNotificationMethod[]; |
| 363 extern const char kSyncNotificationHostPort[]; | 363 extern const char kSyncNotificationHostPort[]; |
| 364 extern const char kSyncServiceURL[]; | 364 extern const char kSyncServiceURL[]; |
| 365 extern const char kSyncTabFavicons[]; | 365 extern const char kSyncTabFavicons[]; |
| 366 extern const char kSyncThrowUnrecoverableError[]; | 366 extern const char kSyncThrowUnrecoverableError[]; |
| 367 extern const char kSyncTrySsltcpFirstForXmpp[]; | 367 extern const char kSyncTrySsltcpFirstForXmpp[]; |
| 368 extern const char kSyncEnableDeferredStartup[]; | 368 extern const char kSyncEnableDeferredStartup[]; |
| 369 extern const char kSyncDisableOAuth2Token[]; |
| 369 extern const char kSyncfsEnableDirectoryOperation[]; | 370 extern const char kSyncfsEnableDirectoryOperation[]; |
| 370 extern const char kTabBrowserDragging[]; | 371 extern const char kTabBrowserDragging[]; |
| 371 extern const char kTabCapture[]; | 372 extern const char kTabCapture[]; |
| 372 extern const char kTestNaClSandbox[]; | 373 extern const char kTestNaClSandbox[]; |
| 373 extern const char kTestName[]; | 374 extern const char kTestName[]; |
| 374 extern const char kTestType[]; | 375 extern const char kTestType[]; |
| 375 extern const char kTestingChannelID[]; | 376 extern const char kTestingChannelID[]; |
| 376 extern const char kTrackActiveVisitTime[]; | 377 extern const char kTrackActiveVisitTime[]; |
| 377 extern const char kTranslateScriptURL[]; | 378 extern const char kTranslateScriptURL[]; |
| 378 extern const char kTrustedSpdyProxy[]; | 379 extern const char kTrustedSpdyProxy[]; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 #else | 454 #else |
| 454 extern const char kEnablePrintPreview[]; | 455 extern const char kEnablePrintPreview[]; |
| 455 #endif | 456 #endif |
| 456 | 457 |
| 457 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 458 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 458 // alphabetical order, or in one of the ifdefs (also in order in each section). | 459 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 459 | 460 |
| 460 } // namespace switches | 461 } // namespace switches |
| 461 | 462 |
| 462 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 463 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |