| 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 d18bef7f3d7cbb74e02b505714d78832b73ba906..9339508a5fa480b77395c46efe8cb625948adb44 100644
|
| --- a/content/common/service_worker/service_worker_messages.h
|
| +++ b/content/common/service_worker/service_worker_messages.h
|
| @@ -146,14 +146,15 @@ IPC_MESSAGE_CONTROL3(
|
| // 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).
|
| +// be MSG_ROUTING_NONE if the context is a worker instead of a document.
|
| +// |shared_worker_route_id| identifies the SharedWorker associated with the
|
| +// provider, it will be MSG_ROUTING_NONE if the context is not SharedWorker.
|
| +// When the context is ServiceWorker, both |render_frame_id| and
|
| +// |shared_worker_route_id| are MSG_ROUTING_NONE.
|
| IPC_MESSAGE_CONTROL3(ServiceWorkerHostMsg_ProviderCreated,
|
| int /* provider_id */,
|
| int /* render_frame_id */,
|
| - content::ServiceWorkerProviderType /* provider_type */)
|
| + int /* shared_worker_route_id */)
|
|
|
| // Informs the browser of a ServiceWorkerProvider being destroyed.
|
| IPC_MESSAGE_CONTROL1(ServiceWorkerHostMsg_ProviderDestroyed,
|
|
|