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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 extern const char kSearchSuggestEnabled[]; | 148 extern const char kSearchSuggestEnabled[]; |
149 #if defined(OS_ANDROID) | 149 #if defined(OS_ANDROID) |
150 extern const char kContextualSearchEnabled[]; | 150 extern const char kContextualSearchEnabled[]; |
151 #endif | 151 #endif |
152 extern const char kConfirmToQuitEnabled[]; | 152 extern const char kConfirmToQuitEnabled[]; |
153 extern const char kPromptForDownload[]; | 153 extern const char kPromptForDownload[]; |
154 extern const char kAlternateErrorPagesEnabled[]; | 154 extern const char kAlternateErrorPagesEnabled[]; |
155 extern const char kDnsPrefetchingStartupList[]; | 155 extern const char kDnsPrefetchingStartupList[]; |
156 extern const char kDnsPrefetchingHostReferralList[]; | 156 extern const char kDnsPrefetchingHostReferralList[]; |
157 extern const char kDisableSpdy[]; | 157 extern const char kDisableSpdy[]; |
| 158 extern const char kQuicEnabled[]; |
158 extern const char kHttpServerProperties[]; | 159 extern const char kHttpServerProperties[]; |
159 extern const char kSpdyServers[]; | 160 extern const char kSpdyServers[]; |
160 extern const char kAlternateProtocolServers[]; | 161 extern const char kAlternateProtocolServers[]; |
161 extern const char kDisabledSchemes[]; | 162 extern const char kDisabledSchemes[]; |
162 #if defined(OS_ANDROID) || defined(OS_IOS) | 163 #if defined(OS_ANDROID) || defined(OS_IOS) |
163 extern const char kLastPolicyCheckTime[]; | 164 extern const char kLastPolicyCheckTime[]; |
164 #endif | 165 #endif |
165 extern const char kInstantUIZeroSuggestUrlPrefix[]; | 166 extern const char kInstantUIZeroSuggestUrlPrefix[]; |
166 extern const char kNetworkPredictionEnabled[]; | 167 extern const char kNetworkPredictionEnabled[]; |
167 extern const char kNetworkPredictionOptions[]; | 168 extern const char kNetworkPredictionOptions[]; |
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 | 823 |
823 extern const char kRegisteredSupervisedUserWhitelists[]; | 824 extern const char kRegisteredSupervisedUserWhitelists[]; |
824 | 825 |
825 #if defined(ENABLE_EXTENSIONS) | 826 #if defined(ENABLE_EXTENSIONS) |
826 extern const char kAnimationPolicy[]; | 827 extern const char kAnimationPolicy[]; |
827 #endif | 828 #endif |
828 | 829 |
829 } // namespace prefs | 830 } // namespace prefs |
830 | 831 |
831 #endif // CHROME_COMMON_PREF_NAMES_H_ | 832 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |