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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 extern const char kSpeculativeResourcePrefetchingDisabled[]; | 319 extern const char kSpeculativeResourcePrefetchingDisabled[]; |
320 extern const char kSpeculativeResourcePrefetchingLearning[]; | 320 extern const char kSpeculativeResourcePrefetchingLearning[]; |
321 extern const char kSSLVersionMax[]; | 321 extern const char kSSLVersionMax[]; |
322 extern const char kSSLVersionMin[]; | 322 extern const char kSSLVersionMin[]; |
323 extern const char kStartMaximized[]; | 323 extern const char kStartMaximized[]; |
324 extern const char kSuggestionNtpFilterWidth[]; | 324 extern const char kSuggestionNtpFilterWidth[]; |
325 extern const char kSuggestionNtpGaussianFilter[]; | 325 extern const char kSuggestionNtpGaussianFilter[]; |
326 extern const char kSuggestionNtpLinearFilter[]; | 326 extern const char kSuggestionNtpLinearFilter[]; |
327 extern const char kSyncAllowInsecureXmppConnection[]; | 327 extern const char kSyncAllowInsecureXmppConnection[]; |
328 extern const char kSyncInvalidateXmppLogin[]; | 328 extern const char kSyncInvalidateXmppLogin[]; |
| 329 extern const char kSyncKeystoreEncryption[]; |
329 extern const char kSyncNotificationMethod[]; | 330 extern const char kSyncNotificationMethod[]; |
330 extern const char kSyncNotificationHostPort[]; | 331 extern const char kSyncNotificationHostPort[]; |
331 extern const char kSyncServiceURL[]; | 332 extern const char kSyncServiceURL[]; |
332 extern const char kSyncTabFavicons[]; | 333 extern const char kSyncTabFavicons[]; |
333 extern const char kSyncThrowUnrecoverableError[]; | 334 extern const char kSyncThrowUnrecoverableError[]; |
334 extern const char kSyncTrySsltcpFirstForXmpp[]; | 335 extern const char kSyncTrySsltcpFirstForXmpp[]; |
335 extern const char kTabBrowserDragging[]; | 336 extern const char kTabBrowserDragging[]; |
336 extern const char kTestNaClSandbox[]; | 337 extern const char kTestNaClSandbox[]; |
337 extern const char kTestName[]; | 338 extern const char kTestName[]; |
338 extern const char kTestType[]; | 339 extern const char kTestType[]; |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 #else | 431 #else |
431 extern const char kEnablePrintPreview[]; | 432 extern const char kEnablePrintPreview[]; |
432 #endif | 433 #endif |
433 | 434 |
434 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 435 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
435 // alphabetical order, or in one of the ifdefs (also in order in each section). | 436 // alphabetical order, or in one of the ifdefs (also in order in each section). |
436 | 437 |
437 } // namespace switches | 438 } // namespace switches |
438 | 439 |
439 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 440 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |