| Index: chrome/browser/ui/app_list/search/search_controller_factory.cc
|
| diff --git a/chrome/browser/ui/app_list/search/search_controller_factory.cc b/chrome/browser/ui/app_list/search/search_controller_factory.cc
|
| index c9fa326c42f51d6308719b52ccc5f583eeb0c574..fd37f04dec8cd6d694725b35e4009263f127ed9e 100644
|
| --- a/chrome/browser/ui/app_list/search/search_controller_factory.cc
|
| +++ b/chrome/browser/ui/app_list/search/search_controller_factory.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/ui/app_list/search/search_controller_factory.h"
|
|
|
| #include "base/command_line.h"
|
| +#include "base/time/default_clock.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/app_list/search/app_search_provider.h"
|
| #include "chrome/browser/ui/app_list/search/history_factory.h"
|
| @@ -26,8 +27,9 @@ scoped_ptr<SearchController> CreateSearchController(
|
| search_box, results, HistoryFactory::GetForBrowserContext(profile)));
|
|
|
| controller->AddProvider(Mixer::MAIN_GROUP,
|
| - scoped_ptr<SearchProvider>(
|
| - new AppSearchProvider(profile, list_controller)));
|
| + scoped_ptr<SearchProvider>(new AppSearchProvider(
|
| + profile, list_controller,
|
| + make_scoped_ptr(new base::DefaultClock()))));
|
| controller->AddProvider(Mixer::OMNIBOX_GROUP,
|
| scoped_ptr<SearchProvider>(
|
| new OmniboxProvider(profile, list_controller)));
|
|
|