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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 extern const char kServiceAccountLsid[]; | 302 extern const char kServiceAccountLsid[]; |
303 extern const char kSetToken[]; | 303 extern const char kSetToken[]; |
304 extern const char kShowAutofillTypePredictions[]; | 304 extern const char kShowAutofillTypePredictions[]; |
305 extern const char kShowComponentExtensionOptions[]; | 305 extern const char kShowComponentExtensionOptions[]; |
306 extern const char kShowIcons[]; | 306 extern const char kShowIcons[]; |
307 extern const char kShowLauncherAlignmentMenu[]; | 307 extern const char kShowLauncherAlignmentMenu[]; |
308 extern const char kSilentDumpOnDCHECK[]; | 308 extern const char kSilentDumpOnDCHECK[]; |
309 extern const char kSimulateUpgrade[]; | 309 extern const char kSimulateUpgrade[]; |
310 extern const char kSocketReusePolicy[]; | 310 extern const char kSocketReusePolicy[]; |
311 extern const char kStartMaximized[]; | 311 extern const char kStartMaximized[]; |
| 312 extern const char kSuggestionNtpFilterWidth[]; |
| 313 extern const char kSuggestionNtpGaussianFilter[]; |
| 314 extern const char kSuggestionNtpLinearFilter[]; |
312 extern const char kSyncAllowInsecureXmppConnection[]; | 315 extern const char kSyncAllowInsecureXmppConnection[]; |
313 extern const char kSyncInvalidateXmppLogin[]; | 316 extern const char kSyncInvalidateXmppLogin[]; |
314 extern const char kSyncNotificationMethod[]; | 317 extern const char kSyncNotificationMethod[]; |
315 extern const char kSyncNotificationHostPort[]; | 318 extern const char kSyncNotificationHostPort[]; |
316 extern const char kSyncServiceURL[]; | 319 extern const char kSyncServiceURL[]; |
317 extern const char kSyncTabFavicons[]; | 320 extern const char kSyncTabFavicons[]; |
318 extern const char kSyncThrowUnrecoverableError[]; | 321 extern const char kSyncThrowUnrecoverableError[]; |
319 extern const char kSyncTrySsltcpFirstForXmpp[]; | 322 extern const char kSyncTrySsltcpFirstForXmpp[]; |
320 extern const char kTabBrowserDragging[]; | 323 extern const char kTabBrowserDragging[]; |
321 extern const char kTestNaClSandbox[]; | 324 extern const char kTestNaClSandbox[]; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 #else | 421 #else |
419 extern const char kEnablePrintPreview[]; | 422 extern const char kEnablePrintPreview[]; |
420 #endif | 423 #endif |
421 | 424 |
422 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
423 // alphabetical order, or in one of the ifdefs (also in order in each section). | 426 // alphabetical order, or in one of the ifdefs (also in order in each section). |
424 | 427 |
425 } // namespace switches | 428 } // namespace switches |
426 | 429 |
427 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |