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 c2fdbd52805f2158a56b464df2b5c3d344a4f668..c080e4777db9437c72f50ae7ef274cedb51d8eec 100644 |
| --- a/content/common/service_worker/service_worker_messages.h |
| +++ b/content/common/service_worker/service_worker_messages.h |
| @@ -119,11 +119,15 @@ IPC_MESSAGE_CONTROL5(ServiceWorkerHostMsg_RegisterServiceWorker, |
| GURL /* scope */, |
| GURL /* script_url */) |
| +IPC_MESSAGE_CONTROL2(ServiceWorkerHostMsg_UpdateServiceWorker, |
| + int /* provider_id */, |
| + int64 /* registration_id */) |
| + |
| IPC_MESSAGE_CONTROL4(ServiceWorkerHostMsg_UnregisterServiceWorker, |
| int /* thread_id */, |
| int /* request_id */, |
| int /* provider_id */, |
| - GURL /* scope (url pattern) */) |
| + GURL /* scope */) |
|
Mike West
2015/06/12 13:02:06
What does this change imply?
nhiroki
2015/06/12 14:59:50
Just a cleanup. In the early SW spec, “pattern” wa
|
| IPC_MESSAGE_CONTROL4(ServiceWorkerHostMsg_GetRegistration, |
| int /* thread_id */, |