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

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

Issue 1221643014: Service Worker: Migrate to version_uuid and surface ServiceWorker.id. (Chromium 2/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 f177e75451a68c857601b768f6b9b212563da4c9..bbaa5834d5633dbfae0de180bed78e7d628300c5 100644
--- a/content/browser/service_worker/service_worker_info.h
+++ b/content/browser/service_worker/service_worker_info.h
@@ -31,7 +31,7 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
ServiceWorkerVersion::Status status,
const GURL& script_url,
int64 registration_id,
- int64 version_id,
+ std::string version_uuid,
int process_id,
int thread_id,
int devtools_agent_route_id);
@@ -41,7 +41,7 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
ServiceWorkerVersion::Status status;
GURL script_url;
int64 registration_id;
- int64 version_id;
+ std::string version_uuid;
int process_id;
int thread_id;
int devtools_agent_route_id;

Powered by Google App Engine
This is Rietveld 408576698