| Index: chrome/browser/search/suggestions/suggestions_service_factory.cc
|
| diff --git a/chrome/browser/search/suggestions/suggestions_service_factory.cc b/chrome/browser/search/suggestions/suggestions_service_factory.cc
|
| index 93ce520a0c848ca05a6a5c0ebba3f63e038244ee..6a063f7bc7b1cd12d6a5bdb7ca7abaede43ace99 100644
|
| --- a/chrome/browser/search/suggestions/suggestions_service_factory.cc
|
| +++ b/chrome/browser/search/suggestions/suggestions_service_factory.cc
|
| @@ -27,7 +27,7 @@
|
| #include "components/suggestions/blacklist_store.h"
|
| #include "components/suggestions/image_manager.h"
|
| #include "components/suggestions/proto/suggestions.pb.h"
|
| -#include "components/suggestions/suggestions_service.h"
|
| +#include "components/suggestions/suggestions_service_impl.h"
|
| #include "components/suggestions/suggestions_store.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -92,7 +92,7 @@ KeyedService* SuggestionsServiceFactory::BuildServiceInstanceFor(
|
| std::unique_ptr<ImageManager> thumbnail_manager(new ImageManager(
|
| std::move(image_fetcher), std::move(db), database_dir,
|
| BrowserThread::GetTaskRunnerForThread(BrowserThread::DB)));
|
| - return new SuggestionsService(
|
| + return new SuggestionsServiceImpl(
|
| signin_manager, token_service, sync_service, profile->GetRequestContext(),
|
| std::move(suggestions_store), std::move(thumbnail_manager),
|
| std::move(blacklist_store));
|
| @@ -100,7 +100,7 @@ KeyedService* SuggestionsServiceFactory::BuildServiceInstanceFor(
|
|
|
| void SuggestionsServiceFactory::RegisterProfilePrefs(
|
| user_prefs::PrefRegistrySyncable* registry) {
|
| - SuggestionsService::RegisterProfilePrefs(registry);
|
| + SuggestionsServiceImpl::RegisterProfilePrefs(registry);
|
| }
|
|
|
| } // namespace suggestions
|
|
|