| Index: chrome/browser/search_engines/template_url_service_factory.cc
|
| diff --git a/chrome/browser/search_engines/template_url_service_factory.cc b/chrome/browser/search_engines/template_url_service_factory.cc
|
| index 5fa64a1dd70933fc17b271fd816a165118138ef6..464441bce1f5adef08af56033d8ee276be2ceedc 100644
|
| --- a/chrome/browser/search_engines/template_url_service_factory.cc
|
| +++ b/chrome/browser/search_engines/template_url_service_factory.cc
|
| @@ -49,7 +49,7 @@ std::unique_ptr<KeyedService> TemplateURLServiceFactory::BuildInstanceFor(
|
| rlz::RLZTracker::ChromeOmnibox(), rlz_lib::SET_TO_GOOGLE);
|
| #endif
|
| Profile* profile = static_cast<Profile*>(context);
|
| - return base::WrapUnique(new TemplateURLService(
|
| + return base::MakeUnique<TemplateURLService>(
|
| profile->GetPrefs(),
|
| std::unique_ptr<SearchTermsData>(new UIThreadSearchTermsData(profile)),
|
| WebDataServiceFactory::GetKeywordWebDataForProfile(
|
| @@ -59,7 +59,7 @@ std::unique_ptr<KeyedService> TemplateURLServiceFactory::BuildInstanceFor(
|
| HistoryServiceFactory::GetForProfile(
|
| profile, ServiceAccessType::EXPLICIT_ACCESS))),
|
| GoogleURLTrackerFactory::GetForProfile(profile),
|
| - g_browser_process->rappor_service(), dsp_change_callback));
|
| + g_browser_process->rappor_service(), dsp_change_callback);
|
| }
|
|
|
| TemplateURLServiceFactory::TemplateURLServiceFactory()
|
|
|