| Index: ios/chrome/browser/history/history_service_factory.cc
|
| diff --git a/ios/chrome/browser/history/history_service_factory.cc b/ios/chrome/browser/history/history_service_factory.cc
|
| index 965c10a9746d83e1fa70345b220929c8433f71bc..55d0390a906cfbf335a0a406beb6b5a1e799d2a1 100644
|
| --- a/ios/chrome/browser/history/history_service_factory.cc
|
| +++ b/ios/chrome/browser/history/history_service_factory.cc
|
| @@ -74,8 +74,8 @@ std::unique_ptr<KeyedService> HistoryServiceFactory::BuildServiceInstanceFor(
|
| ios::ChromeBrowserState::FromBrowserState(context);
|
| std::unique_ptr<history::HistoryService> history_service(
|
| new history::HistoryService(
|
| - base::WrapUnique(new HistoryClientImpl(
|
| - ios::BookmarkModelFactory::GetForBrowserState(browser_state))),
|
| + base::MakeUnique<HistoryClientImpl>(
|
| + ios::BookmarkModelFactory::GetForBrowserState(browser_state)),
|
| nullptr));
|
| if (!history_service->Init(history::HistoryDatabaseParamsForPath(
|
| browser_state->GetStatePath()))) {
|
|
|