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 c2fdbd52805f2158a56b464df2b5c3d344a4f668..bf49dc49f50632bb39b90c1138f68a05756edda9 100644 |
--- a/content/common/service_worker/service_worker_messages.h |
+++ b/content/common/service_worker/service_worker_messages.h |
@@ -149,15 +149,16 @@ IPC_MESSAGE_CONTROL3( |
std::vector<content::TransferredMessagePort> /* sent_message_ports */) |
// Informs the browser of a new ServiceWorkerProvider in the child process, |
-// |provider_id| is unique within its child process. |
-// |render_frame_id| identifies the frame associated with the provider, it will |
-// it will be MSG_ROUTING_NONE if the context is a worker instead of a document. |
-// |provider_type| identifies whether this provider is for ServiceWorker |
-// controllees (documents and SharedWorkers) or for controllers |
-// (ServiceWorkers). |
+// |provider_id| is unique within its child process. When this provider is |
+// created for a document, |route_id| is the frame ID of it. When this provider |
+// is created for a Shared Worker, |route_id| is the Shared Worker route ID. |
+// When this provider is created for a Service Worker, |route_id| is |
+// MSG_ROUTING_NONE. |provider_type| identifies whether this provider is for |
+// Service Worker controllees (documents and Shared Workers) or for controllers |
+// (Service Workers). |
IPC_MESSAGE_CONTROL3(ServiceWorkerHostMsg_ProviderCreated, |
int /* provider_id */, |
- int /* render_frame_id */, |
+ int /* route_id */, |
content::ServiceWorkerProviderType /* provider_type */) |
// Informs the browser of a ServiceWorkerProvider being destroyed. |