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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 extern const char kDisablePromptOnRepost[]; | 112 extern const char kDisablePromptOnRepost[]; |
113 extern const char kDisableQuic[]; | 113 extern const char kDisableQuic[]; |
114 extern const char kDisableQuicHttps[]; | 114 extern const char kDisableQuicHttps[]; |
115 extern const char kDisableQuicPacing[]; | 115 extern const char kDisableQuicPacing[]; |
116 extern const char kDisableQuicPortSelection[]; | 116 extern const char kDisableQuicPortSelection[]; |
117 extern const char kDisableRestoreBackgroundContents[]; | 117 extern const char kDisableRestoreBackgroundContents[]; |
118 extern const char kDisableSearchButtonInOmnibox[]; | 118 extern const char kDisableSearchButtonInOmnibox[]; |
119 extern const char kDisableScriptedPrintThrottling[]; | 119 extern const char kDisableScriptedPrintThrottling[]; |
120 extern const char kDisableSpdy31[]; | 120 extern const char kDisableSpdy31[]; |
121 extern const char kDisableSync[]; | 121 extern const char kDisableSync[]; |
122 extern const char kDisableSyncAppList[]; | |
123 extern const char kDisableSyncSessionsV2[]; | 122 extern const char kDisableSyncSessionsV2[]; |
124 extern const char kDisableSyncSyncedNotifications[]; | 123 extern const char kDisableSyncSyncedNotifications[]; |
125 extern const char kDisableSyncTypes[]; | 124 extern const char kDisableSyncTypes[]; |
126 extern const char kDisableTLSChannelID[]; | 125 extern const char kDisableTLSChannelID[]; |
127 extern const char kDisableUserMediaSecurity[]; | 126 extern const char kDisableUserMediaSecurity[]; |
128 extern const char kDisableWebResources[]; | 127 extern const char kDisableWebResources[]; |
129 extern const char kDisableZeroBrowsersOpenForTests[]; | 128 extern const char kDisableZeroBrowsersOpenForTests[]; |
130 extern const char kDiskCacheDir[]; | 129 extern const char kDiskCacheDir[]; |
131 extern const char kDiskCacheSize[]; | 130 extern const char kDiskCacheSize[]; |
132 extern const char kDnsLogDetails[]; | 131 extern const char kDnsLogDetails[]; |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 #else | 440 #else |
442 extern const char kEnablePrintPreview[]; | 441 extern const char kEnablePrintPreview[]; |
443 #endif | 442 #endif |
444 | 443 |
445 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 444 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
446 // alphabetical order, or in one of the ifdefs (also in order in each section). | 445 // alphabetical order, or in one of the ifdefs (also in order in each section). |
447 | 446 |
448 } // namespace switches | 447 } // namespace switches |
449 | 448 |
450 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 449 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |