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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 extern const char kDisablePrerenderLocalPredictor[]; | 102 extern const char kDisablePrerenderLocalPredictor[]; |
103 extern const char kDisablePromptOnRepost[]; | 103 extern const char kDisablePromptOnRepost[]; |
104 extern const char kDisableQuic[]; | 104 extern const char kDisableQuic[]; |
105 extern const char kDisableQuicHttps[]; | 105 extern const char kDisableQuicHttps[]; |
106 extern const char kDisableQuicPacing[]; | 106 extern const char kDisableQuicPacing[]; |
107 extern const char kDisableQuicPortSelection[]; | 107 extern const char kDisableQuicPortSelection[]; |
108 extern const char kDisableQuicTimeBasedLossDetection[]; | 108 extern const char kDisableQuicTimeBasedLossDetection[]; |
109 extern const char kDisableRestoreBackgroundContents[]; | 109 extern const char kDisableRestoreBackgroundContents[]; |
110 extern const char kDisableSavePasswordBubble[]; | 110 extern const char kDisableSavePasswordBubble[]; |
111 extern const char kDisableSearchButtonInOmnibox[]; | 111 extern const char kDisableSearchButtonInOmnibox[]; |
| 112 extern const char kDisableSessionCrashedBubble[]; |
112 extern const char kDisableScriptedPrintThrottling[]; | 113 extern const char kDisableScriptedPrintThrottling[]; |
113 extern const char kDisableSpdy31[]; | 114 extern const char kDisableSpdy31[]; |
114 extern const char kDisableSuggestionsService[]; | 115 extern const char kDisableSuggestionsService[]; |
115 extern const char kDisableSync[]; | 116 extern const char kDisableSync[]; |
116 extern const char kDisableSyncSyncedNotifications[]; | 117 extern const char kDisableSyncSyncedNotifications[]; |
117 extern const char kDisableSyncTypes[]; | 118 extern const char kDisableSyncTypes[]; |
118 extern const char kDisableUserMediaSecurity[]; | 119 extern const char kDisableUserMediaSecurity[]; |
119 extern const char kDisableWebResources[]; | 120 extern const char kDisableWebResources[]; |
120 extern const char kDisableZeroBrowsersOpenForTests[]; | 121 extern const char kDisableZeroBrowsersOpenForTests[]; |
121 extern const char kDiskCacheDir[]; | 122 extern const char kDiskCacheDir[]; |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 #else | 412 #else |
412 extern const char kEnablePrintPreview[]; | 413 extern const char kEnablePrintPreview[]; |
413 #endif | 414 #endif |
414 | 415 |
415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
416 // alphabetical order, or in one of the ifdefs (also in order in each section). | 417 // alphabetical order, or in one of the ifdefs (also in order in each section). |
417 | 418 |
418 } // namespace switches | 419 } // namespace switches |
419 | 420 |
420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |