| Index: chrome/browser/ui/bookmarks/bookmark_unittest.cc
|
| diff --git a/chrome/browser/ui/bookmarks/bookmark_unittest.cc b/chrome/browser/ui/bookmarks/bookmark_unittest.cc
|
| index 16b9c3a595707b811fe132aa7cf0dbc5e6b71f65..05338c785df487467e21c3822e84f23a33682f6e 100644
|
| --- a/chrome/browser/ui/bookmarks/bookmark_unittest.cc
|
| +++ b/chrome/browser/ui/bookmarks/bookmark_unittest.cc
|
| @@ -7,6 +7,7 @@
|
| #include "chrome/browser/ui/tabs/tab_strip_model.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "chrome/test/base/browser_with_test_window_test.h"
|
| +#include "components/search_engines/search_terms_data.h"
|
| #include "content/public/browser/navigation_entry.h"
|
| #include "content/public/browser/web_contents.h"
|
|
|
| @@ -57,8 +58,10 @@ class BookmarkInstantExtendedTest : 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(BookmarkInstantExtendedTest);
|
|
|