| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 extern const char kSyncInvalidateXmppLogin[]; | 355 extern const char kSyncInvalidateXmppLogin[]; |
| 356 extern const char kSyncKeystoreEncryption[]; | 356 extern const char kSyncKeystoreEncryption[]; |
| 357 extern const char kSyncShortInitialRetryOverride[]; | 357 extern const char kSyncShortInitialRetryOverride[]; |
| 358 extern const char kSyncNotificationMethod[]; | 358 extern const char kSyncNotificationMethod[]; |
| 359 extern const char kSyncNotificationHostPort[]; | 359 extern const char kSyncNotificationHostPort[]; |
| 360 extern const char kSyncServiceURL[]; | 360 extern const char kSyncServiceURL[]; |
| 361 extern const char kSyncTabFavicons[]; | 361 extern const char kSyncTabFavicons[]; |
| 362 extern const char kSyncThrowUnrecoverableError[]; | 362 extern const char kSyncThrowUnrecoverableError[]; |
| 363 extern const char kSyncTrySsltcpFirstForXmpp[]; | 363 extern const char kSyncTrySsltcpFirstForXmpp[]; |
| 364 extern const char kSyncEnableDeferredStartup[]; | 364 extern const char kSyncEnableDeferredStartup[]; |
| 365 extern const char kSyncfsEnableDirectoryOperation[]; |
| 365 extern const char kTabBrowserDragging[]; | 366 extern const char kTabBrowserDragging[]; |
| 366 extern const char kTabCapture[]; | 367 extern const char kTabCapture[]; |
| 367 extern const char kTestNaClSandbox[]; | 368 extern const char kTestNaClSandbox[]; |
| 368 extern const char kTestName[]; | 369 extern const char kTestName[]; |
| 369 extern const char kTestType[]; | 370 extern const char kTestType[]; |
| 370 extern const char kTestingChannelID[]; | 371 extern const char kTestingChannelID[]; |
| 371 extern const char kTrackActiveVisitTime[]; | 372 extern const char kTrackActiveVisitTime[]; |
| 372 extern const char kTranslateScriptURL[]; | 373 extern const char kTranslateScriptURL[]; |
| 373 extern const char kTrustedSpdyProxy[]; | 374 extern const char kTrustedSpdyProxy[]; |
| 374 extern const char kTryChromeAgain[]; | 375 extern const char kTryChromeAgain[]; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 #else | 483 #else |
| 483 extern const char kEnablePrintPreview[]; | 484 extern const char kEnablePrintPreview[]; |
| 484 #endif | 485 #endif |
| 485 | 486 |
| 486 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 487 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 487 // alphabetical order, or in one of the ifdefs (also in order in each section). | 488 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 488 | 489 |
| 489 } // namespace switches | 490 } // namespace switches |
| 490 | 491 |
| 491 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 492 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |