| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 extern const char kSyncAllowInsecureXmppConnection[]; | 380 extern const char kSyncAllowInsecureXmppConnection[]; |
| 381 extern const char kSyncInvalidateXmppLogin[]; | 381 extern const char kSyncInvalidateXmppLogin[]; |
| 382 extern const char kSyncShortInitialRetryOverride[]; | 382 extern const char kSyncShortInitialRetryOverride[]; |
| 383 extern const char kSyncNotificationHostPort[]; | 383 extern const char kSyncNotificationHostPort[]; |
| 384 extern const char kSyncServiceURL[]; | 384 extern const char kSyncServiceURL[]; |
| 385 extern const char kSyncThrowUnrecoverableError[]; | 385 extern const char kSyncThrowUnrecoverableError[]; |
| 386 extern const char kSyncTrySsltcpFirstForXmpp[]; | 386 extern const char kSyncTrySsltcpFirstForXmpp[]; |
| 387 extern const char kSyncEnableDeferredStartup[]; | 387 extern const char kSyncEnableDeferredStartup[]; |
| 388 extern const char kSyncEnableGetUpdateAvoidance[]; | 388 extern const char kSyncEnableGetUpdateAvoidance[]; |
| 389 extern const char kSyncfsEnableDirectoryOperation[]; | 389 extern const char kSyncfsEnableDirectoryOperation[]; |
| 390 extern const char kTabBrowserDragging[]; | |
| 391 extern const char kTabCapture[]; | 390 extern const char kTabCapture[]; |
| 392 extern const char kTestName[]; | 391 extern const char kTestName[]; |
| 393 extern const char kTestType[]; | 392 extern const char kTestType[]; |
| 394 extern const char kTestingChannelID[]; | 393 extern const char kTestingChannelID[]; |
| 395 extern const char kTranslateScriptURL[]; | 394 extern const char kTranslateScriptURL[]; |
| 396 extern const char kTrustedSpdyProxy[]; | 395 extern const char kTrustedSpdyProxy[]; |
| 397 extern const char kTryChromeAgain[]; | 396 extern const char kTryChromeAgain[]; |
| 398 extern const char kUninstallExtension[]; | 397 extern const char kUninstallExtension[]; |
| 399 extern const char kUninstall[]; | 398 extern const char kUninstall[]; |
| 400 extern const char kUnlimitedStorage[]; | 399 extern const char kUnlimitedStorage[]; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 #else | 479 #else |
| 481 extern const char kEnablePrintPreview[]; | 480 extern const char kEnablePrintPreview[]; |
| 482 #endif | 481 #endif |
| 483 | 482 |
| 484 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 483 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 485 // alphabetical order, or in one of the ifdefs (also in order in each section). | 484 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 486 | 485 |
| 487 } // namespace switches | 486 } // namespace switches |
| 488 | 487 |
| 489 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 488 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |