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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 #if defined(OS_MACOSX) | 161 #if defined(OS_MACOSX) |
162 extern const char kConfirmToQuitEnabled[]; | 162 extern const char kConfirmToQuitEnabled[]; |
163 extern const char kHideFullscreenToolbar[]; | 163 extern const char kHideFullscreenToolbar[]; |
164 extern const char kShowFullscreenToolbar[]; | 164 extern const char kShowFullscreenToolbar[]; |
165 #endif | 165 #endif |
166 extern const char kPromptForDownload[]; | 166 extern const char kPromptForDownload[]; |
167 extern const char kAlternateErrorPagesEnabled[]; | 167 extern const char kAlternateErrorPagesEnabled[]; |
168 extern const char kDnsPrefetchingStartupList[]; | 168 extern const char kDnsPrefetchingStartupList[]; |
169 extern const char kDnsPrefetchingHostReferralList[]; | 169 extern const char kDnsPrefetchingHostReferralList[]; |
170 extern const char kHttpServerProperties[]; | 170 extern const char kHttpServerProperties[]; |
| 171 extern const char kNetworkQualities[]; |
171 #if defined(OS_ANDROID) | 172 #if defined(OS_ANDROID) |
172 extern const char kLastPolicyCheckTime[]; | 173 extern const char kLastPolicyCheckTime[]; |
173 #endif | 174 #endif |
174 extern const char kInstantUIZeroSuggestUrlPrefix[]; | 175 extern const char kInstantUIZeroSuggestUrlPrefix[]; |
175 extern const char kNetworkPredictionOptions[]; | 176 extern const char kNetworkPredictionOptions[]; |
176 extern const char kDefaultAppsInstallState[]; | 177 extern const char kDefaultAppsInstallState[]; |
177 extern const char kHideWebStoreIcon[]; | 178 extern const char kHideWebStoreIcon[]; |
178 #if defined(OS_CHROMEOS) | 179 #if defined(OS_CHROMEOS) |
179 extern const char kTapToClickEnabled[]; | 180 extern const char kTapToClickEnabled[]; |
180 extern const char kTapDraggingEnabled[]; | 181 extern const char kTapDraggingEnabled[]; |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 #endif | 833 #endif |
833 | 834 |
834 extern const char kOriginTrialPublicKey[]; | 835 extern const char kOriginTrialPublicKey[]; |
835 extern const char kOriginTrialDisabledFeatures[]; | 836 extern const char kOriginTrialDisabledFeatures[]; |
836 | 837 |
837 extern const char kComponentUpdatesEnabled[]; | 838 extern const char kComponentUpdatesEnabled[]; |
838 | 839 |
839 } // namespace prefs | 840 } // namespace prefs |
840 | 841 |
841 #endif // CHROME_COMMON_PREF_NAMES_H_ | 842 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |