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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
115 extern const char kDisableOmniboxAutoCompletionForIme[]; | 115 extern const char kDisableOmniboxAutoCompletionForIme[]; |
116 extern const char kDisableOriginChip[]; | 116 extern const char kDisableOriginChip[]; |
117 extern const char kDisablePasswordAutofillPublicSuffixDomainMatching[]; | 117 extern const char kDisablePasswordAutofillPublicSuffixDomainMatching[]; |
118 extern const char kDisablePasswordManagerReauthentication[]; | 118 extern const char kDisablePasswordManagerReauthentication[]; |
119 extern const char kDisablePeopleSearch[]; | 119 extern const char kDisablePeopleSearch[]; |
120 extern const char kDisablePnacl[]; | 120 extern const char kDisablePnacl[]; |
121 extern const char kDisablePopupBlocking[]; | 121 extern const char kDisablePopupBlocking[]; |
122 extern const char kDisablePreconnect[]; | 122 extern const char kDisablePreconnect[]; |
123 extern const char kDisablePrerenderLocalPredictor[]; | 123 extern const char kDisablePrerenderLocalPredictor[]; |
124 extern const char kDisablePrivetLocalPrinting[]; | 124 extern const char kDisablePrivetLocalPrinting[]; |
125 extern const char kEnablePrivetStorage[]; | |
Vitaly Buka (NO REVIEWS)
2014/01/07 21:13:22
fix order
Noam Samuel
2014/01/07 21:48:55
Done.
| |
125 extern const char kDisablePromptOnRepost[]; | 126 extern const char kDisablePromptOnRepost[]; |
126 extern const char kDisableQuic[]; | 127 extern const char kDisableQuic[]; |
127 extern const char kDisableQuicHttps[]; | 128 extern const char kDisableQuicHttps[]; |
128 extern const char kDisableRestoreBackgroundContents[]; | 129 extern const char kDisableRestoreBackgroundContents[]; |
129 extern const char kDisableRestoreSessionState[]; | 130 extern const char kDisableRestoreSessionState[]; |
130 extern const char kDisableSearchButtonInOmnibox[]; | 131 extern const char kDisableSearchButtonInOmnibox[]; |
131 extern const char kDisableScriptedPrintThrottling[]; | 132 extern const char kDisableScriptedPrintThrottling[]; |
132 extern const char kDisableSpdy31[]; | 133 extern const char kDisableSpdy31[]; |
133 extern const char kDisableStickyKeys[]; | 134 extern const char kDisableStickyKeys[]; |
134 extern const char kDisableSync[]; | 135 extern const char kDisableSync[]; |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
481 #else | 482 #else |
482 extern const char kEnablePrintPreview[]; | 483 extern const char kEnablePrintPreview[]; |
483 #endif | 484 #endif |
484 | 485 |
485 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 486 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
486 // alphabetical order, or in one of the ifdefs (also in order in each section). | 487 // alphabetical order, or in one of the ifdefs (also in order in each section). |
487 | 488 |
488 } // namespace switches | 489 } // namespace switches |
489 | 490 |
490 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 491 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |