| Index: content/browser/service_worker/service_worker_info.h
|
| diff --git a/content/browser/service_worker/service_worker_info.h b/content/browser/service_worker/service_worker_info.h
|
| index 135f0a03da1f33fe494b25289a2fe9be3bef2978..8de17feaa24dc28d2b187f0c608ae0b9c22a7d9c 100644
|
| --- a/content/browser/service_worker/service_worker_info.h
|
| +++ b/content/browser/service_worker/service_worker_info.h
|
| @@ -56,7 +56,6 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
|
| struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {
|
| public:
|
| enum DeleteFlag { IS_NOT_DELETED, IS_DELETED };
|
| - enum ForceUpdateOnPageLoad { IS_NOT_FORCED, IS_FORCED };
|
| ServiceWorkerRegistrationInfo();
|
| ServiceWorkerRegistrationInfo(const GURL& pattern,
|
| int64_t registration_id,
|
| @@ -65,7 +64,6 @@ struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {
|
| const GURL& pattern,
|
| int64_t registration_id,
|
| DeleteFlag delete_flag,
|
| - ForceUpdateOnPageLoad force_update_on_page_load,
|
| const ServiceWorkerVersionInfo& active_version,
|
| const ServiceWorkerVersionInfo& waiting_version,
|
| const ServiceWorkerVersionInfo& installing_version,
|
| @@ -76,7 +74,6 @@ struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {
|
| GURL pattern;
|
| int64_t registration_id;
|
| DeleteFlag delete_flag;
|
| - ForceUpdateOnPageLoad force_update_on_page_load;
|
| ServiceWorkerVersionInfo active_version;
|
| ServiceWorkerVersionInfo waiting_version;
|
| ServiceWorkerVersionInfo installing_version;
|
|
|