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

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

Issue 410673002: [Suggestions] Moving suggestions code to a new component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gn fix Created 6 years, 5 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 | Annotate | Revision Log
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 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1207 1207
1208 // Whether to show the Easy Unlock first run tutorial. 1208 // Whether to show the Easy Unlock first run tutorial.
1209 extern const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; 1209 extern const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial";
1210 1210
1211 // Preference storing Easy Unlock pairing data. 1211 // Preference storing Easy Unlock pairing data.
1212 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; 1212 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing";
1213 1213
1214 // A cache of zero suggest results using JSON serialized into a string. 1214 // A cache of zero suggest results using JSON serialized into a string.
1215 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; 1215 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults";
1216 1216
1217 // A cache of suggestions represented as a serialized SuggestionsProfile
1218 // protobuf.
1219 const char kSuggestionsData[] = "suggestions.data";
1220
1221 // A cache of a suggestions blacklist, represented as a serialized
1222 // SuggestionsBlacklist protobuf.
1223 const char kSuggestionsBlacklist[] = "suggestions.blacklist";
1224
1225 // *************** LOCAL STATE *************** 1217 // *************** LOCAL STATE ***************
1226 // These are attached to the machine/installation 1218 // These are attached to the machine/installation
1227 1219
1228 // A pref to configure networks device-wide. Its value must be a list of 1220 // A pref to configure networks device-wide. Its value must be a list of
1229 // NetworkConfigurations according to the OpenNetworkConfiguration 1221 // NetworkConfigurations according to the OpenNetworkConfiguration
1230 // specification. 1222 // specification.
1231 // Currently, this pref is only used to store the policy. The user's 1223 // Currently, this pref is only used to store the policy. The user's
1232 // configuration is still stored in Shill. 1224 // configuration is still stored in Shill.
1233 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; 1225 const char kDeviceOpenNetworkConfiguration[] = "device_onc";
1234 1226
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
2289 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2281 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2290 // given by the PartnerBookmarksProvider and either the user-visible renamed 2282 // given by the PartnerBookmarksProvider and either the user-visible renamed
2291 // title or an empty string if the bookmark node was removed. 2283 // title or an empty string if the bookmark node was removed.
2292 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2284 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2293 #endif 2285 #endif
2294 2286
2295 // Whether DNS Quick Check is disabled in proxy resolution. 2287 // Whether DNS Quick Check is disabled in proxy resolution.
2296 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2288 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2297 2289
2298 } // namespace prefs 2290 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698