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

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

Issue 501453002: Decouple script_url from ServiceWorkerRegistration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync after major collision Created 6 years, 4 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 3d9b918132b8c6677471b64e6e3c125d67d75279..6fc2eef1c5d46d6af93e1921228d901244a5565f 100644
--- a/content/browser/service_worker/service_worker_info.h
+++ b/content/browser/service_worker/service_worker_info.h
@@ -18,6 +18,7 @@ class CONTENT_EXPORT ServiceWorkerVersionInfo {
ServiceWorkerVersionInfo();
ServiceWorkerVersionInfo(ServiceWorkerVersion::RunningStatus running_status,
ServiceWorkerVersion::Status status,
+ const GURL& script_url,
int64 version_id,
int process_id,
int thread_id,
@@ -27,6 +28,7 @@ class CONTENT_EXPORT ServiceWorkerVersionInfo {
bool is_null;
ServiceWorkerVersion::RunningStatus running_status;
ServiceWorkerVersion::Status status;
+ GURL script_url;
int64 version_id;
int process_id;
int thread_id;
@@ -37,7 +39,6 @@ class CONTENT_EXPORT ServiceWorkerRegistrationInfo {
public:
ServiceWorkerRegistrationInfo();
ServiceWorkerRegistrationInfo(
- const GURL& script_url,
const GURL& pattern,
int64 registration_id,
const ServiceWorkerVersionInfo& active_version,
@@ -45,7 +46,6 @@ class CONTENT_EXPORT ServiceWorkerRegistrationInfo {
const ServiceWorkerVersionInfo& installing_version);
~ServiceWorkerRegistrationInfo();
- GURL script_url;
GURL pattern;
int64 registration_id;
ServiceWorkerVersionInfo controlling_version;

Powered by Google App Engine
This is Rietveld 408576698