| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1242 // Preference storing Easy Unlock pairing data. | 1242 // Preference storing Easy Unlock pairing data. |
| 1243 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1243 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
| 1244 | 1244 |
| 1245 // A cache of zero suggest results using JSON serialized into a string. | 1245 // A cache of zero suggest results using JSON serialized into a string. |
| 1246 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; | 1246 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; |
| 1247 | 1247 |
| 1248 // A cache of suggestions represented as a serialized SuggestionsProfile | 1248 // A cache of suggestions represented as a serialized SuggestionsProfile |
| 1249 // protobuf. | 1249 // protobuf. |
| 1250 const char kSuggestionsData[] = "suggestions.data"; | 1250 const char kSuggestionsData[] = "suggestions.data"; |
| 1251 | 1251 |
| 1252 // A cache of a suggestions blacklist, represented as a serialized |
| 1253 // SuggestionsBlacklist protobuf. |
| 1254 const char kSuggestionsBlacklist[] = "suggestions.blacklist"; |
| 1255 |
| 1252 // *************** LOCAL STATE *************** | 1256 // *************** LOCAL STATE *************** |
| 1253 // These are attached to the machine/installation | 1257 // These are attached to the machine/installation |
| 1254 | 1258 |
| 1255 // A pref to configure networks device-wide. Its value must be a list of | 1259 // A pref to configure networks device-wide. Its value must be a list of |
| 1256 // NetworkConfigurations according to the OpenNetworkConfiguration | 1260 // NetworkConfigurations according to the OpenNetworkConfiguration |
| 1257 // specification. | 1261 // specification. |
| 1258 // Currently, this pref is only used to store the policy. The user's | 1262 // Currently, this pref is only used to store the policy. The user's |
| 1259 // configuration is still stored in Shill. | 1263 // configuration is still stored in Shill. |
| 1260 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1264 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
| 1261 | 1265 |
| (...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2330 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2334 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2331 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2335 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2332 // title or an empty string if the bookmark node was removed. | 2336 // title or an empty string if the bookmark node was removed. |
| 2333 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2337 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2334 #endif | 2338 #endif |
| 2335 | 2339 |
| 2336 // Whether DNS Quick Check is disabled in proxy resolution. | 2340 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2337 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2341 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2338 | 2342 |
| 2339 } // namespace prefs | 2343 } // namespace prefs |
| OLD | NEW |