| Index: chrome/browser/favicon/favicon_service_factory.cc
|
| diff --git a/chrome/browser/favicon/favicon_service_factory.cc b/chrome/browser/favicon/favicon_service_factory.cc
|
| index d1717cb011bbe8feffd4bb024378572a7eb71569..81528e4c69df599acce840c7d20146b536b1bbb4 100644
|
| --- a/chrome/browser/favicon/favicon_service_factory.cc
|
| +++ b/chrome/browser/favicon/favicon_service_factory.cc
|
| @@ -19,10 +19,10 @@ namespace {
|
| std::unique_ptr<KeyedService> BuildFaviconService(
|
| content::BrowserContext* context) {
|
| Profile* profile = Profile::FromBrowserContext(context);
|
| - return base::WrapUnique(new favicon::FaviconService(
|
| + return base::MakeUnique<favicon::FaviconService>(
|
| base::WrapUnique(new ChromeFaviconClient(profile)),
|
| - HistoryServiceFactory::GetForProfile(
|
| - profile, ServiceAccessType::EXPLICIT_ACCESS)));
|
| + HistoryServiceFactory::GetForProfile(profile,
|
| + ServiceAccessType::EXPLICIT_ACCESS));
|
| }
|
|
|
| } // namespace
|
|
|