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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 extern const char kDnsPrefetchingStartupList[]; | 168 extern const char kDnsPrefetchingStartupList[]; |
169 extern const char kDnsHostReferralList[]; // OBSOLETE | 169 extern const char kDnsHostReferralList[]; // OBSOLETE |
170 extern const char kDnsPrefetchingHostReferralList[]; | 170 extern const char kDnsPrefetchingHostReferralList[]; |
171 extern const char kDisableSpdy[]; | 171 extern const char kDisableSpdy[]; |
172 extern const char kHttpServerProperties[]; | 172 extern const char kHttpServerProperties[]; |
173 extern const char kSpdyServers[]; | 173 extern const char kSpdyServers[]; |
174 extern const char kAlternateProtocolServers[]; | 174 extern const char kAlternateProtocolServers[]; |
175 extern const char kDisabledSchemes[]; | 175 extern const char kDisabledSchemes[]; |
176 #if defined(OS_ANDROID) || defined(OS_IOS) | 176 #if defined(OS_ANDROID) || defined(OS_IOS) |
177 extern const char kLastPolicyCheckTime[]; | 177 extern const char kLastPolicyCheckTime[]; |
178 extern const char kManagedBookmarks[]; | |
179 #endif | 178 #endif |
180 extern const char kInstantUIZeroSuggestUrlPrefix[]; | 179 extern const char kInstantUIZeroSuggestUrlPrefix[]; |
181 extern const char kMultipleProfilePrefMigration[]; | 180 extern const char kMultipleProfilePrefMigration[]; |
182 extern const char kNetworkPredictionEnabled[]; | 181 extern const char kNetworkPredictionEnabled[]; |
183 extern const char kDefaultAppsInstallState[]; | 182 extern const char kDefaultAppsInstallState[]; |
184 extern const char kHideWebStoreIcon[]; | 183 extern const char kHideWebStoreIcon[]; |
185 #if defined(OS_CHROMEOS) | 184 #if defined(OS_CHROMEOS) |
186 extern const char kAudioDevicesMute[]; | 185 extern const char kAudioDevicesMute[]; |
187 extern const char kAudioDevicesVolumePercent[]; | 186 extern const char kAudioDevicesVolumePercent[]; |
188 extern const char kAudioMute[]; | 187 extern const char kAudioMute[]; |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
875 | 874 |
876 #if defined(OS_ANDROID) | 875 #if defined(OS_ANDROID) |
877 extern const char kPartnerBookmarkMappings[]; | 876 extern const char kPartnerBookmarkMappings[]; |
878 #endif | 877 #endif |
879 | 878 |
880 extern const char kQuickCheckEnabled[]; | 879 extern const char kQuickCheckEnabled[]; |
881 | 880 |
882 } // namespace prefs | 881 } // namespace prefs |
883 | 882 |
884 #endif // CHROME_COMMON_PREF_NAMES_H_ | 883 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |