| 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 d24c8c936108163f0ed77e733eb39c4ed92ff785..90aa7ffed3c18be1bc3b7158eb51708e93cb7044 100644
|
| --- a/content/browser/service_worker/service_worker_registration.cc
|
| +++ b/content/browser/service_worker/service_worker_registration.cc
|
| @@ -36,7 +36,6 @@ ServiceWorkerRegistration::ServiceWorkerRegistration(
|
| is_uninstalling_(false),
|
| is_uninstalled_(false),
|
| should_activate_when_ready_(false),
|
| - force_update_on_page_load_(false),
|
| resources_total_size_bytes_(0),
|
| context_(context) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| @@ -93,8 +92,6 @@ ServiceWorkerRegistrationInfo ServiceWorkerRegistration::GetInfo() {
|
| pattern(), registration_id_,
|
| is_deleted_ ? ServiceWorkerRegistrationInfo::IS_DELETED
|
| : ServiceWorkerRegistrationInfo::IS_NOT_DELETED,
|
| - force_update_on_page_load_ ? ServiceWorkerRegistrationInfo::IS_FORCED
|
| - : ServiceWorkerRegistrationInfo::IS_NOT_FORCED,
|
| GetVersionInfo(active_version_.get()),
|
| GetVersionInfo(waiting_version_.get()),
|
| GetVersionInfo(installing_version_.get()), resources_total_size_bytes_);
|
|
|