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

Unified Diff: content/browser/service_worker/service_worker_dispatcher_host.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_dispatcher_host.h
diff --git a/content/browser/service_worker/service_worker_dispatcher_host.h b/content/browser/service_worker/service_worker_dispatcher_host.h
index fbbcf9caabd18c2d2d2439a197d787ad6bc212e0..f36efd52cf10e31f498a0fe4aa8aa1e7f945561a 100644
--- a/content/browser/service_worker/service_worker_dispatcher_host.h
+++ b/content/browser/service_worker/service_worker_dispatcher_host.h
@@ -62,7 +62,7 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
scoped_ptr<ServiceWorkerRegistrationHandle> handle);
ServiceWorkerHandle* FindServiceWorkerHandle(int provider_id,
- int64 version_id);
+ std::string version_uuid);
// Returns the existing registration handle whose reference count is
// incremented or newly created one if it doesn't exist.
@@ -105,7 +105,7 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
int route_id,
ServiceWorkerProviderType provider_type);
void OnProviderDestroyed(int provider_id);
- void OnSetHostedVersionId(int provider_id, int64 version_id);
+ void OnSetHostedVersionId(int provider_id, std::string version_uuid);
void OnWorkerReadyForInspection(int embedded_worker_id);
void OnWorkerScriptLoaded(int embedded_worker_id,
int thread_id,

Powered by Google App Engine
This is Rietveld 408576698