| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 extern const char kDisablePopupBlocking[]; | 118 extern const char kDisablePopupBlocking[]; |
| 119 extern const char kDisablePreconnect[]; | 119 extern const char kDisablePreconnect[]; |
| 120 extern const char kDisablePrerenderLocalPredictor[]; | 120 extern const char kDisablePrerenderLocalPredictor[]; |
| 121 extern const char kDisablePrivetLocalPrinting[]; | 121 extern const char kDisablePrivetLocalPrinting[]; |
| 122 extern const char kDisablePromptOnRepost[]; | 122 extern const char kDisablePromptOnRepost[]; |
| 123 extern const char kDisableQuic[]; | 123 extern const char kDisableQuic[]; |
| 124 extern const char kDisableQuicHttps[]; | 124 extern const char kDisableQuicHttps[]; |
| 125 extern const char kDisableQuicPacing[]; | 125 extern const char kDisableQuicPacing[]; |
| 126 extern const char kDisableQuicPortSelection[]; | 126 extern const char kDisableQuicPortSelection[]; |
| 127 extern const char kDisableRestoreBackgroundContents[]; | 127 extern const char kDisableRestoreBackgroundContents[]; |
| 128 extern const char kDisableRestoreSessionState[]; | |
| 129 extern const char kDisableSearchButtonInOmnibox[]; | 128 extern const char kDisableSearchButtonInOmnibox[]; |
| 130 extern const char kDisableScriptedPrintThrottling[]; | 129 extern const char kDisableScriptedPrintThrottling[]; |
| 131 extern const char kDisableSpdy31[]; | 130 extern const char kDisableSpdy31[]; |
| 132 extern const char kDisableSync[]; | 131 extern const char kDisableSync[]; |
| 133 extern const char kDisableSyncAppSettings[]; | 132 extern const char kDisableSyncAppSettings[]; |
| 134 extern const char kDisableSyncApps[]; | 133 extern const char kDisableSyncApps[]; |
| 135 extern const char kDisableSyncAutofill[]; | 134 extern const char kDisableSyncAutofill[]; |
| 136 extern const char kDisableSyncAutofillProfile[]; | 135 extern const char kDisableSyncAutofillProfile[]; |
| 137 extern const char kDisableSyncBookmarks[]; | 136 extern const char kDisableSyncBookmarks[]; |
| 138 extern const char kDisableSyncDictionary[]; | 137 extern const char kDisableSyncDictionary[]; |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 #else | 469 #else |
| 471 extern const char kEnablePrintPreview[]; | 470 extern const char kEnablePrintPreview[]; |
| 472 #endif | 471 #endif |
| 473 | 472 |
| 474 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 473 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 475 // alphabetical order, or in one of the ifdefs (also in order in each section). | 474 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 476 | 475 |
| 477 } // namespace switches | 476 } // namespace switches |
| 478 | 477 |
| 479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |