| Index: components/offline_pages/background/request_coordinator.cc
|
| diff --git a/components/offline_pages/background/request_coordinator.cc b/components/offline_pages/background/request_coordinator.cc
|
| index e4b30799cc918c92ceeb66e7567a0ac7a480eacd..9f2fdc2580ae550ce00dabe7dc79b76e66a84f10 100644
|
| --- a/components/offline_pages/background/request_coordinator.cc
|
| +++ b/components/offline_pages/background/request_coordinator.cc
|
| @@ -447,11 +447,7 @@ void RequestCoordinator::OfflinerDoneCallback(const SavePageRequest& request,
|
| // aborted cases to treat this way (eg, for Render Process Killed).
|
| SavePageRequest updated_request(request);
|
| AbortRequestAttempt(&updated_request);
|
| - SavePageStatus notify_status =
|
| - (status == Offliner::RequestStatus::FOREGROUND_CANCELED)
|
| - ? SavePageStatus::FOREGROUND_CANCELED
|
| - : SavePageStatus::PRERENDER_CANCELED;
|
| - NotifyCompleted(updated_request, notify_status);
|
| + NotifyChanged(updated_request);
|
| } else if (status == Offliner::RequestStatus::SAVED) {
|
| // Remove the request from the queue if it succeeded.
|
| RemoveAttemptedRequest(request, SavePageStatus::SUCCESS);
|
|
|