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 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1317 // Preference storing Easy Unlock pairing data. | 1317 // Preference storing Easy Unlock pairing data. |
1318 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1318 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
1319 | 1319 |
1320 // A cache of zero suggest results using JSON serialized into a string. | 1320 // A cache of zero suggest results using JSON serialized into a string. |
1321 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; | 1321 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; |
1322 | 1322 |
1323 // A cache of suggestions represented as a serialized SuggestionsProfile | 1323 // A cache of suggestions represented as a serialized SuggestionsProfile |
1324 // protobuf. | 1324 // protobuf. |
1325 const char kSuggestionsData[] = "suggestions.data"; | 1325 const char kSuggestionsData[] = "suggestions.data"; |
1326 | 1326 |
| 1327 // A cache of a suggestions blacklist, represented as a serialized |
| 1328 // SuggestionsBlacklist protobuf. |
| 1329 const char kSuggestionsBlacklist[] = "suggestions.blacklist"; |
| 1330 |
1327 // *************** LOCAL STATE *************** | 1331 // *************** LOCAL STATE *************** |
1328 // These are attached to the machine/installation | 1332 // These are attached to the machine/installation |
1329 | 1333 |
1330 // A pref to configure networks device-wide. Its value must be a list of | 1334 // A pref to configure networks device-wide. Its value must be a list of |
1331 // NetworkConfigurations according to the OpenNetworkConfiguration | 1335 // NetworkConfigurations according to the OpenNetworkConfiguration |
1332 // specification. | 1336 // specification. |
1333 // Currently, this pref is only used to store the policy. The user's | 1337 // Currently, this pref is only used to store the policy. The user's |
1334 // configuration is still stored in Shill. | 1338 // configuration is still stored in Shill. |
1335 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1339 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
1336 | 1340 |
(...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2393 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2397 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2394 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2398 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2395 // title or an empty string if the bookmark node was removed. | 2399 // title or an empty string if the bookmark node was removed. |
2396 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2400 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2397 #endif | 2401 #endif |
2398 | 2402 |
2399 // Whether DNS Quick Check is disabled in proxy resolution. | 2403 // Whether DNS Quick Check is disabled in proxy resolution. |
2400 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2404 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2401 | 2405 |
2402 } // namespace prefs | 2406 } // namespace prefs |
OLD | NEW |