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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 extern const char kDnsPrefetchingStartupList[]; | 173 extern const char kDnsPrefetchingStartupList[]; |
174 extern const char kDnsHostReferralList[]; // OBSOLETE | 174 extern const char kDnsHostReferralList[]; // OBSOLETE |
175 extern const char kDnsPrefetchingHostReferralList[]; | 175 extern const char kDnsPrefetchingHostReferralList[]; |
176 extern const char kDisableSpdy[]; | 176 extern const char kDisableSpdy[]; |
177 extern const char kHttpServerProperties[]; | 177 extern const char kHttpServerProperties[]; |
178 extern const char kSpdyServers[]; | 178 extern const char kSpdyServers[]; |
179 extern const char kAlternateProtocolServers[]; | 179 extern const char kAlternateProtocolServers[]; |
180 extern const char kDisabledSchemes[]; | 180 extern const char kDisabledSchemes[]; |
181 #if defined(OS_ANDROID) | 181 #if defined(OS_ANDROID) |
182 extern const char kLastPolicyCheckTime[]; | 182 extern const char kLastPolicyCheckTime[]; |
| 183 #endif |
| 184 #if defined(OS_ANDROID) || defined(OS_IOS) |
183 extern const char kManagedBookmarks[]; | 185 extern const char kManagedBookmarks[]; |
184 #endif | 186 #endif |
185 extern const char kInstantUIZeroSuggestUrlPrefix[]; | 187 extern const char kInstantUIZeroSuggestUrlPrefix[]; |
186 extern const char kMultipleProfilePrefMigration[]; | 188 extern const char kMultipleProfilePrefMigration[]; |
187 extern const char kNetworkPredictionEnabled[]; | 189 extern const char kNetworkPredictionEnabled[]; |
188 extern const char kDefaultAppsInstallState[]; | 190 extern const char kDefaultAppsInstallState[]; |
189 extern const char kHideWebStoreIcon[]; | 191 extern const char kHideWebStoreIcon[]; |
190 #if defined(OS_CHROMEOS) | 192 #if defined(OS_CHROMEOS) |
191 extern const char kAudioDevicesMute[]; | 193 extern const char kAudioDevicesMute[]; |
192 extern const char kAudioDevicesVolumePercent[]; | 194 extern const char kAudioDevicesVolumePercent[]; |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
941 | 943 |
942 #if defined(OS_ANDROID) | 944 #if defined(OS_ANDROID) |
943 extern const char kPartnerBookmarkMappings[]; | 945 extern const char kPartnerBookmarkMappings[]; |
944 #endif | 946 #endif |
945 | 947 |
946 extern const char kQuickCheckEnabled[]; | 948 extern const char kQuickCheckEnabled[]; |
947 | 949 |
948 } // namespace prefs | 950 } // namespace prefs |
949 | 951 |
950 #endif // CHROME_COMMON_PREF_NAMES_H_ | 952 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |