| Index: components/reading_list/ios/reading_list_model_impl.cc
|
| diff --git a/components/reading_list/ios/reading_list_model_impl.cc b/components/reading_list/ios/reading_list_model_impl.cc
|
| index 14cd81ce5a6fe226fa5fc7442e9d0bc4452d8c66..8e7d0bbed113e6972791e97e4b35cc44b05769d1 100644
|
| --- a/components/reading_list/ios/reading_list_model_impl.cc
|
| +++ b/components/reading_list/ios/reading_list_model_impl.cc
|
| @@ -170,8 +170,11 @@ ReadingListEntry* ReadingListModelImpl::SyncMergeEntry(
|
| } else {
|
| unread_entry_count_++;
|
| }
|
| - for (auto& observer : observers_)
|
| + for (auto& observer : observers_) {
|
| + observer.ReadingListDidMoveEntry(this, url);
|
| observer.ReadingListDidApplyChanges(this);
|
| + }
|
| +
|
| return existing_entry;
|
| }
|
|
|
| @@ -263,6 +266,7 @@ void ReadingListModelImpl::SetReadStatus(const GURL& url, bool read) {
|
| storage_layer_->SaveEntry(entry);
|
| }
|
| for (ReadingListModelObserver& observer : observers_) {
|
| + observer.ReadingListDidMoveEntry(this, url);
|
| observer.ReadingListDidApplyChanges(this);
|
| }
|
| }
|
|
|