| 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 c971cf87e50531a6f8b994c7218f217a3b127d90..0dcfbd063a1174c8d2d2eba9648308602732a450 100644
|
| --- a/chrome/browser/bookmarks/bookmark_model_factory.cc
|
| +++ b/chrome/browser/bookmarks/bookmark_model_factory.cc
|
| @@ -22,7 +22,6 @@
|
| #include "components/bookmarks/browser/bookmark_model.h"
|
| #include "components/bookmarks/common/bookmark_pref_names.h"
|
| #include "components/keyed_service/content/browser_context_dependency_manager.h"
|
| -#include "components/omnibox/omnibox_field_trial.h"
|
| #include "components/pref_registry/pref_registry_syncable.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| @@ -59,8 +58,7 @@ KeyedService* BookmarkModelFactory::BuildServiceInstanceFor(
|
| Profile* profile = static_cast<Profile*>(context);
|
| ChromeBookmarkClient* bookmark_client =
|
| ChromeBookmarkClientFactory::GetForProfile(profile);
|
| - BookmarkModel* bookmark_model = new BookmarkModel(
|
| - bookmark_client, OmniboxFieldTrial::BookmarksIndexURLsValue());
|
| + BookmarkModel* bookmark_model = new BookmarkModel(bookmark_client);
|
| bookmark_client->Init(bookmark_model);
|
| bookmark_model->Load(profile->GetPrefs(),
|
| profile->GetPrefs()->GetString(prefs::kAcceptLanguages),
|
|
|