Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1150)

Side by Side Diff: chrome/common/pref_names.cc

Issue 330473003: Offline blacklisting for SuggestionsService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address second round of comments. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 // Preference storing Easy Unlock pairing data. 1306 // Preference storing Easy Unlock pairing data.
1307 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; 1307 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing";
1308 1308
1309 // A cache of zero suggest results using JSON serialized into a string. 1309 // A cache of zero suggest results using JSON serialized into a string.
1310 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; 1310 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults";
1311 1311
1312 // A cache of suggestions represented as a serialized SuggestionsProfile 1312 // A cache of suggestions represented as a serialized SuggestionsProfile
1313 // protobuf. 1313 // protobuf.
1314 const char kSuggestionsData[] = "suggestions.data"; 1314 const char kSuggestionsData[] = "suggestions.data";
1315 1315
1316 // A cache of a suggestions blacklist, represented as a serialized
1317 // SuggestionsBlacklist protobuf.
1318 const char kSuggestionsBlacklist[] = "suggestions.blacklist";
1319
1316 // *************** LOCAL STATE *************** 1320 // *************** LOCAL STATE ***************
1317 // These are attached to the machine/installation 1321 // These are attached to the machine/installation
1318 1322
1319 // A pref to configure networks device-wide. Its value must be a list of 1323 // A pref to configure networks device-wide. Its value must be a list of
1320 // NetworkConfigurations according to the OpenNetworkConfiguration 1324 // NetworkConfigurations according to the OpenNetworkConfiguration
1321 // specification. 1325 // specification.
1322 // Currently, this pref is only used to store the policy. The user's 1326 // Currently, this pref is only used to store the policy. The user's
1323 // configuration is still stored in Shill. 1327 // configuration is still stored in Shill.
1324 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; 1328 const char kDeviceOpenNetworkConfiguration[] = "device_onc";
1325 1329
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after
2381 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2385 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2382 // given by the PartnerBookmarksProvider and either the user-visible renamed 2386 // given by the PartnerBookmarksProvider and either the user-visible renamed
2383 // title or an empty string if the bookmark node was removed. 2387 // title or an empty string if the bookmark node was removed.
2384 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2388 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2385 #endif 2389 #endif
2386 2390
2387 // Whether DNS Quick Check is disabled in proxy resolution. 2391 // Whether DNS Quick Check is disabled in proxy resolution.
2388 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2392 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2389 2393
2390 } // namespace prefs 2394 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698