Chromium Code Reviews| 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 84e87f47ad4fc16d264eb17d715b3fa8728234c5..0412b851fb3ed9b51570734bb6c09fafb8d75eac 100644 |
| --- a/content/common/service_worker/service_worker_messages.h |
| +++ b/content/common/service_worker/service_worker_messages.h |
| @@ -26,15 +26,17 @@ IPC_STRUCT_TRAITS_END() |
| // Messages sent from the child process to the browser. |
| -IPC_MESSAGE_CONTROL4(ServiceWorkerHostMsg_RegisterServiceWorker, |
| +IPC_MESSAGE_CONTROL5(ServiceWorkerHostMsg_RegisterServiceWorker, |
| int32 /* thread_id */, |
| int32 /* request_id */, |
| + int /* provider_id */, |
|
kinuko
2014/01/29 09:56:20
It looks we don't need to send this back to browse
alecflett
2014/01/30 01:51:13
I suppose we don't now.
|
| GURL /* scope */, |
| GURL /* script_url */) |
| -IPC_MESSAGE_CONTROL3(ServiceWorkerHostMsg_UnregisterServiceWorker, |
| +IPC_MESSAGE_CONTROL4(ServiceWorkerHostMsg_UnregisterServiceWorker, |
| int32 /* thread_id */, |
| int32 /* request_id */, |
| + int /* provider_id */, |
| GURL /* scope (url pattern) */) |
| // Messages sent from the browser to the child process. |