| Index: ios/chrome/browser/reading_list/reading_list_model_factory.cc
|
| diff --git a/ios/chrome/browser/reading_list/reading_list_model_factory.cc b/ios/chrome/browser/reading_list/reading_list_model_factory.cc
|
| index 17052494df28007811579cde091f2f2029a25fb5..a0b2166299b7af0aecb747537cec0eb035fc1a4d 100644
|
| --- a/ios/chrome/browser/reading_list/reading_list_model_factory.cc
|
| +++ b/ios/chrome/browser/reading_list/reading_list_model_factory.cc
|
| @@ -39,11 +39,11 @@ ReadingListModelFactory::ReadingListModelFactory()
|
|
|
| ReadingListModelFactory::~ReadingListModelFactory() {}
|
|
|
| -scoped_ptr<KeyedService> ReadingListModelFactory::BuildServiceInstanceFor(
|
| +std::unique_ptr<KeyedService> ReadingListModelFactory::BuildServiceInstanceFor(
|
| web::BrowserState* context) const {
|
| std::unique_ptr<ReadingListModelStorage> storage(
|
| new ReadingListModelStorageDefaults());
|
| - scoped_ptr<ReadingListModelMemory> reading_list_model(
|
| + std::unique_ptr<ReadingListModelMemory> reading_list_model(
|
| new ReadingListModelMemory(std::move(storage)));
|
| return std::move(reading_list_model);
|
| }
|
|
|