| 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 8d8583d5c96f4a0453baff34c96736979588d5d3..065b7be23d0d487461fe5a58e648180a85bfac37 100644
|
| --- a/content/common/service_worker/service_worker_messages.h
|
| +++ b/content/common/service_worker/service_worker_messages.h
|
| @@ -201,6 +201,10 @@ IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_CacheStorageCreate,
|
| int /* request_id */,
|
| base::string16 /* fetch_store_name */)
|
|
|
| +IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_CacheStorageOpen,
|
| + int /* request_id */,
|
| + base::string16 /* fetch_store_name */)
|
| +
|
| IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_CacheStorageDelete,
|
| int /* request_id */,
|
| base::string16 /* fetch_store_name */)
|
| @@ -369,6 +373,9 @@ IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_CacheStorageHasSuccess,
|
| IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageCreateSuccess,
|
| int /* request_id */,
|
| int /* fetch_store_id */)
|
| +IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageOpenSuccess,
|
| + int /* request_id */,
|
| + int /* fetch_store_id */)
|
| IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_CacheStorageDeleteSuccess,
|
| int /* request_id */)
|
| IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageKeysSuccess,
|
| @@ -385,6 +392,9 @@ IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageHasError,
|
| IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageCreateError,
|
| int /* request_id */,
|
| blink::WebServiceWorkerCacheError /* reason */)
|
| +IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageOpenError,
|
| + int /* request_id */,
|
| + blink::WebServiceWorkerCacheError /* reason */)
|
| IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheStorageDeleteError,
|
| int /* request_id */,
|
| blink::WebServiceWorkerCacheError /* reason */)
|
|
|