| Index: chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| index 90c241ccf59a3a3461543ec96234016e46f75687..6f24362693c35b937263e92b9cd9d6e33fed592c 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| @@ -18,6 +18,7 @@
|
| #include "chrome/test/base/testing_browser_process.h"
|
| #include "chrome/test/base/testing_pref_service_syncable.h"
|
| #include "components/bookmarks/test/bookmark_test_helpers.h"
|
| +#include "components/search_engines/search_terms_data.h"
|
| #include "ui/views/controls/button/label_button.h"
|
|
|
| class BookmarkBarViewInstantExtendedTest : public BrowserWithTestWindowTest {
|
| @@ -38,8 +39,10 @@ class BookmarkBarViewInstantExtendedTest : public BrowserWithTestWindowTest {
|
| private:
|
| static KeyedService* CreateTemplateURLService(
|
| content::BrowserContext* profile) {
|
| - return new TemplateURLService(static_cast<Profile*>(profile), NULL,
|
| - base::Closure());
|
| + return new TemplateURLService(static_cast<Profile*>(profile)->GetPrefs(),
|
| + make_scoped_ptr(new SearchTermsData), NULL,
|
| + scoped_ptr<KeywordHistoryServiceInterface>(),
|
| + NULL, NULL, base::Closure());
|
| }
|
|
|
| DISALLOW_COPY_AND_ASSIGN(BookmarkBarViewInstantExtendedTest);
|
|
|