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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 extern const char kDisablePrerenderLocalPredictor[]; | 103 extern const char kDisablePrerenderLocalPredictor[]; |
104 extern const char kDisablePromptOnRepost[]; | 104 extern const char kDisablePromptOnRepost[]; |
105 extern const char kDisableQuic[]; | 105 extern const char kDisableQuic[]; |
106 extern const char kDisableQuicHttps[]; | 106 extern const char kDisableQuicHttps[]; |
107 extern const char kDisableQuicPacing[]; | 107 extern const char kDisableQuicPacing[]; |
108 extern const char kDisableQuicPortSelection[]; | 108 extern const char kDisableQuicPortSelection[]; |
109 extern const char kDisableQuicTimeBasedLossDetection[]; | 109 extern const char kDisableQuicTimeBasedLossDetection[]; |
110 extern const char kDisableRestoreBackgroundContents[]; | 110 extern const char kDisableRestoreBackgroundContents[]; |
111 extern const char kDisableSavePasswordBubble[]; | 111 extern const char kDisableSavePasswordBubble[]; |
112 extern const char kDisableSearchButtonInOmnibox[]; | 112 extern const char kDisableSearchButtonInOmnibox[]; |
| 113 extern const char kDisableSessionCrashedBubble[]; |
113 extern const char kDisableScriptedPrintThrottling[]; | 114 extern const char kDisableScriptedPrintThrottling[]; |
114 extern const char kDisableSpdy31[]; | 115 extern const char kDisableSpdy31[]; |
115 extern const char kDisableSuggestionsService[]; | 116 extern const char kDisableSuggestionsService[]; |
116 extern const char kDisableSync[]; | 117 extern const char kDisableSync[]; |
117 extern const char kDisableSyncSyncedNotifications[]; | 118 extern const char kDisableSyncSyncedNotifications[]; |
118 extern const char kDisableSyncTypes[]; | 119 extern const char kDisableSyncTypes[]; |
119 extern const char kDisableUserMediaSecurity[]; | 120 extern const char kDisableUserMediaSecurity[]; |
120 extern const char kDisableWebResources[]; | 121 extern const char kDisableWebResources[]; |
121 extern const char kDisableZeroBrowsersOpenForTests[]; | 122 extern const char kDisableZeroBrowsersOpenForTests[]; |
122 extern const char kDiskCacheDir[]; | 123 extern const char kDiskCacheDir[]; |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 #else | 426 #else |
426 extern const char kEnablePrintPreview[]; | 427 extern const char kEnablePrintPreview[]; |
427 #endif | 428 #endif |
428 | 429 |
429 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 430 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
430 // alphabetical order, or in one of the ifdefs (also in order in each section). | 431 // alphabetical order, or in one of the ifdefs (also in order in each section). |
431 | 432 |
432 } // namespace switches | 433 } // namespace switches |
433 | 434 |
434 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 435 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |