| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 extern const char kSuggestionNtpFilterWidth[]; | 375 extern const char kSuggestionNtpFilterWidth[]; |
| 376 extern const char kSuggestionNtpGaussianFilter[]; | 376 extern const char kSuggestionNtpGaussianFilter[]; |
| 377 extern const char kSuggestionNtpLinearFilter[]; | 377 extern const char kSuggestionNtpLinearFilter[]; |
| 378 extern const char kSyncAllowInsecureXmppConnection[]; | 378 extern const char kSyncAllowInsecureXmppConnection[]; |
| 379 extern const char kSyncInvalidateXmppLogin[]; | 379 extern const char kSyncInvalidateXmppLogin[]; |
| 380 extern const char kSyncShortInitialRetryOverride[]; | 380 extern const char kSyncShortInitialRetryOverride[]; |
| 381 extern const char kSyncNotificationHostPort[]; | 381 extern const char kSyncNotificationHostPort[]; |
| 382 extern const char kSyncServiceURL[]; | 382 extern const char kSyncServiceURL[]; |
| 383 extern const char kSyncThrowUnrecoverableError[]; | 383 extern const char kSyncThrowUnrecoverableError[]; |
| 384 extern const char kSyncTrySsltcpFirstForXmpp[]; | 384 extern const char kSyncTrySsltcpFirstForXmpp[]; |
| 385 extern const char kSyncDisableDeferredStartup[]; | 385 extern const char kSyncEnableDeferredStartup[]; |
| 386 extern const char kSyncEnableGetUpdateAvoidance[]; | 386 extern const char kSyncEnableGetUpdateAvoidance[]; |
| 387 extern const char kSyncfsEnableDirectoryOperation[]; | 387 extern const char kSyncfsEnableDirectoryOperation[]; |
| 388 extern const char kTabCapture[]; | 388 extern const char kTabCapture[]; |
| 389 extern const char kTestName[]; | 389 extern const char kTestName[]; |
| 390 extern const char kTestType[]; | 390 extern const char kTestType[]; |
| 391 extern const char kTestingChannelID[]; | 391 extern const char kTestingChannelID[]; |
| 392 extern const char kTrustedSpdyProxy[]; | 392 extern const char kTrustedSpdyProxy[]; |
| 393 extern const char kTryChromeAgain[]; | 393 extern const char kTryChromeAgain[]; |
| 394 extern const char kUninstallExtension[]; | 394 extern const char kUninstallExtension[]; |
| 395 extern const char kUninstall[]; | 395 extern const char kUninstall[]; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 #else | 472 #else |
| 473 extern const char kEnablePrintPreview[]; | 473 extern const char kEnablePrintPreview[]; |
| 474 #endif | 474 #endif |
| 475 | 475 |
| 476 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 476 // 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). | 477 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 478 | 478 |
| 479 } // namespace switches | 479 } // namespace switches |
| 480 | 480 |
| 481 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 481 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |