| 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 99e374696b0afc1218fbcd37631614496ed80f34..3d9b918132b8c6677471b64e6e3c125d67d75279 100644
|
| --- a/content/browser/service_worker/service_worker_info.h
|
| +++ b/content/browser/service_worker/service_worker_info.h
|
| @@ -41,14 +41,17 @@ class CONTENT_EXPORT ServiceWorkerRegistrationInfo {
|
| const GURL& pattern,
|
| int64 registration_id,
|
| const ServiceWorkerVersionInfo& active_version,
|
| - const ServiceWorkerVersionInfo& waiting_version);
|
| + const ServiceWorkerVersionInfo& waiting_version,
|
| + const ServiceWorkerVersionInfo& installing_version);
|
| ~ServiceWorkerRegistrationInfo();
|
|
|
| GURL script_url;
|
| GURL pattern;
|
| int64 registration_id;
|
| + ServiceWorkerVersionInfo controlling_version;
|
| ServiceWorkerVersionInfo active_version;
|
| ServiceWorkerVersionInfo waiting_version;
|
| + ServiceWorkerVersionInfo installing_version;
|
| };
|
|
|
| } // namespace content
|
|
|