| Index: chrome/browser/ui/app_list/app_list_syncable_service_factory.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_syncable_service_factory.cc b/chrome/browser/ui/app_list/app_list_syncable_service_factory.cc
|
| index 7d3509bdc889ea2bfdaa8590bf50c438e5071cfc..ea2e3e44b54b648850023eaf5058b9f613026649 100644
|
| --- a/chrome/browser/ui/app_list/app_list_syncable_service_factory.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_syncable_service_factory.cc
|
| @@ -51,8 +51,8 @@ std::unique_ptr<KeyedService> AppListSyncableServiceFactory::BuildInstanceFor(
|
| #endif
|
| VLOG(1) << "BuildInstanceFor: " << profile->GetDebugName()
|
| << " (" << profile << ")";
|
| - return base::WrapUnique(new AppListSyncableService(
|
| - profile, extensions::ExtensionSystem::Get(profile)));
|
| + return base::MakeUnique<AppListSyncableService>(
|
| + profile, extensions::ExtensionSystem::Get(profile));
|
| }
|
|
|
| // static
|
|
|