| Index: content/browser/service_worker/service_worker_registration.cc
|
| diff --git a/content/browser/service_worker/service_worker_registration.cc b/content/browser/service_worker/service_worker_registration.cc
|
| index f436f95c38f488003d691e93a13abbf5043b2915..09e58369cfd8ac6bdfd31dc3149817137f4f7845 100644
|
| --- a/content/browser/service_worker/service_worker_registration.cc
|
| +++ b/content/browser/service_worker/service_worker_registration.cc
|
| @@ -75,12 +75,12 @@ void ServiceWorkerRegistration::NotifyUpdateFound() {
|
| ServiceWorkerRegistrationInfo ServiceWorkerRegistration::GetInfo() {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| return ServiceWorkerRegistrationInfo(
|
| - pattern(),
|
| - registration_id_,
|
| + pattern(), registration_id_,
|
| + is_deleted_ ? ServiceWorkerRegistrationInfo::IS_DELETED
|
| + : ServiceWorkerRegistrationInfo::IS_NOT_DELETED,
|
| GetVersionInfo(active_version_.get()),
|
| GetVersionInfo(waiting_version_.get()),
|
| - GetVersionInfo(installing_version_.get()),
|
| - resources_total_size_bytes_);
|
| + GetVersionInfo(installing_version_.get()), resources_total_size_bytes_);
|
| }
|
|
|
| void ServiceWorkerRegistration::SetActiveVersion(
|
|
|