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 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1300 // Preference storing Easy Unlock pairing data. | 1300 // Preference storing Easy Unlock pairing data. |
1301 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1301 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
1302 | 1302 |
1303 // A cache of zero suggest results using JSON serialized into a string. | 1303 // A cache of zero suggest results using JSON serialized into a string. |
1304 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; | 1304 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; |
1305 | 1305 |
1306 // A cache of suggestions represented as a serialized SuggestionsProfile | 1306 // A cache of suggestions represented as a serialized SuggestionsProfile |
1307 // protobuf. | 1307 // protobuf. |
1308 const char kSuggestionsData[] = "suggestions.data"; | 1308 const char kSuggestionsData[] = "suggestions.data"; |
1309 | 1309 |
| 1310 // A cache of a suggestions blacklist, represented as a serialized |
| 1311 // SuggestionsBlacklist protobuf. |
| 1312 const char kSuggestionsBlacklist[] = "suggestions.blacklist"; |
| 1313 |
1310 // *************** LOCAL STATE *************** | 1314 // *************** LOCAL STATE *************** |
1311 // These are attached to the machine/installation | 1315 // These are attached to the machine/installation |
1312 | 1316 |
1313 // A pref to configure networks device-wide. Its value must be a list of | 1317 // A pref to configure networks device-wide. Its value must be a list of |
1314 // NetworkConfigurations according to the OpenNetworkConfiguration | 1318 // NetworkConfigurations according to the OpenNetworkConfiguration |
1315 // specification. | 1319 // specification. |
1316 // Currently, this pref is only used to store the policy. The user's | 1320 // Currently, this pref is only used to store the policy. The user's |
1317 // configuration is still stored in Shill. | 1321 // configuration is still stored in Shill. |
1318 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1322 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
1319 | 1323 |
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2375 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2379 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2376 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2380 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2377 // title or an empty string if the bookmark node was removed. | 2381 // title or an empty string if the bookmark node was removed. |
2378 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2382 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2379 #endif | 2383 #endif |
2380 | 2384 |
2381 // Whether DNS Quick Check is disabled in proxy resolution. | 2385 // Whether DNS Quick Check is disabled in proxy resolution. |
2382 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2386 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2383 | 2387 |
2384 } // namespace prefs | 2388 } // namespace prefs |
OLD | NEW |