| Index: chrome/browser/bookmarks/bookmark_model_factory.cc
|
| diff --git a/chrome/browser/bookmarks/bookmark_model_factory.cc b/chrome/browser/bookmarks/bookmark_model_factory.cc
|
| index e0f7e802536f17997ee125911fcf8d237d7cd7aa..e031858f89db8cbeacde41aa85f34b0bff6c10f4 100644
|
| --- a/chrome/browser/bookmarks/bookmark_model_factory.cc
|
| +++ b/chrome/browser/bookmarks/bookmark_model_factory.cc
|
| @@ -88,14 +88,9 @@ void BookmarkModelFactory::RegisterProfilePrefs(
|
| // want to sync the expanded state of folders, it should be part of
|
| // bookmark sync itself (i.e., a property of the sync folder nodes).
|
| registry->RegisterListPref(bookmarks::prefs::kBookmarkEditorExpandedNodes,
|
| - new base::ListValue,
|
| - user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| - registry->RegisterListPref(
|
| - bookmarks::prefs::kManagedBookmarks,
|
| - user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| - registry->RegisterListPref(
|
| - bookmarks::prefs::kSupervisedBookmarks,
|
| - user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + new base::ListValue);
|
| + registry->RegisterListPref(bookmarks::prefs::kManagedBookmarks);
|
| + registry->RegisterListPref(bookmarks::prefs::kSupervisedBookmarks);
|
| }
|
|
|
| content::BrowserContext* BookmarkModelFactory::GetBrowserContextToUse(
|
|
|