diff options
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index a4e95ca..924d731 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -507,7 +507,7 @@ const char kUrlWhitelist[] = "policy.url_whitelist"; const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; // A list of bookmarks to include in a Managed Bookmarks root node. Each -// list item is a dictionary containig a "name" and an "url" entry, detailing +// list item is a dictionary containing a "name" and an "url" entry, detailing // the bookmark name and target URL respectively. const char kManagedBookmarks[] = "policy.managed_bookmarks"; #endif @@ -2590,4 +2590,13 @@ const char kProfilePreferenceHashes[] = "profile.preference_hashes"; // network time tracker when browser starts. const char kNetworkTimeMapping[] = "profile.network_time_mapping"; +#if defined(OS_ANDROID) +// A list of partner bookmark rename/remove mappings. +// Each list item is a dictionary containing a "url", a "provider_title" and +// "mapped_title" entries, detailing the bookmark target URL (if any), the title +// given by the PartnerBookmarksProvider and either the user-visible renamed +// title or an empty string if the bookmark node was removed. +const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; +#endif + } // namespace prefs |