Index: content/common/service_worker/service_worker_messages.h |
diff --git a/content/common/service_worker/service_worker_messages.h b/content/common/service_worker/service_worker_messages.h |
index f940d06a48eabd2335a4da61eccb50f18f30ea70..57016b5d2bf1d0157f94d12d6885eba81ec0680e 100644 |
--- a/content/common/service_worker/service_worker_messages.h |
+++ b/content/common/service_worker/service_worker_messages.h |
@@ -184,6 +184,17 @@ IPC_MESSAGE_ROUTED1(ServiceWorkerHostMsg_CacheStorageKeys, |
// extract it and dispatch the message to the correct ServiceWorkerDispatcher |
// on the correct thread. |
+// Informs the child process that the given provider gets associated or |
+// unassociated with the registration. |
+IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_AssociateRegistration, |
+ int /* thread_id */, |
+ int /* provider_id */, |
+ content::ServiceWorkerRegistrationObjectInfo, |
+ content::ServiceWorkerVersionAttributes) |
+IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_UnassociateRegistration, |
nasko
2014/09/10 01:15:56
The inverse of "associate" is "dissociate".
nhiroki
2014/09/10 01:50:47
Done.
|
+ int /* thread_id */, |
+ int /* provider_id */) |
+ |
// Response to ServiceWorkerMsg_RegisterServiceWorker. |
IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_ServiceWorkerRegistered, |
int /* thread_id */, |