Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1989)

Unified Diff: content/browser/service_worker/service_worker_info.h

Issue 360123002: ServiceWorker: some more groundwork in support of the update process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « content/browser/service_worker/service_worker_context_core.cc ('k') | content/browser/service_worker/service_worker_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698