| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Message definition file, included multiple times, hence no include guard. | 5 // Message definition file, included multiple times, hence no include guard. |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 int /* request_id */, | 259 int /* request_id */, |
| 260 blink::WebServiceWorkerEventResult, | 260 blink::WebServiceWorkerEventResult, |
| 261 bool /* has_fetch_event_handler */) | 261 bool /* has_fetch_event_handler */) |
| 262 | 262 |
| 263 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ActivateEventFinished, | 263 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ActivateEventFinished, |
| 264 int /* request_id */, | 264 int /* request_id */, |
| 265 blink::WebServiceWorkerEventResult) | 265 blink::WebServiceWorkerEventResult) |
| 266 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ExtendableMessageEventFinished, | 266 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_ExtendableMessageEventFinished, |
| 267 int /* request_id */, | 267 int /* request_id */, |
| 268 blink::WebServiceWorkerEventResult) | 268 blink::WebServiceWorkerEventResult) |
| 269 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_FetchEventResponse, | 269 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_FetchEventResponse, |
| 270 int /* response_id */, | 270 int /* response_id */, |
| 271 content::ServiceWorkerFetchEventResult, | 271 content::ServiceWorkerFetchEventResult, |
| 272 content::ServiceWorkerResponse) | 272 content::ServiceWorkerResponse, |
| 273 base::Time /* dispatch_event_time */) |
| 273 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_FetchEventFinished, | 274 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_FetchEventFinished, |
| 274 int /* event_finish_id */, | 275 int /* event_finish_id */, |
| 275 blink::WebServiceWorkerEventResult) | 276 blink::WebServiceWorkerEventResult) |
| 276 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationClickEventFinished, | 277 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationClickEventFinished, |
| 277 int /* request_id */, | 278 int /* request_id */, |
| 278 blink::WebServiceWorkerEventResult) | 279 blink::WebServiceWorkerEventResult) |
| 279 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationCloseEventFinished, | 280 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_NotificationCloseEventFinished, |
| 280 int /* request_id */, | 281 int /* request_id */, |
| 281 blink::WebServiceWorkerEventResult) | 282 blink::WebServiceWorkerEventResult) |
| 282 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_PushEventFinished, | 283 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_PushEventFinished, |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 | 539 |
| 539 // Sent via EmbeddedWorker as a response of NavigateClient. | 540 // Sent via EmbeddedWorker as a response of NavigateClient. |
| 540 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, | 541 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, |
| 541 int /* request_id */, | 542 int /* request_id */, |
| 542 content::ServiceWorkerClientInfo /* client */) | 543 content::ServiceWorkerClientInfo /* client */) |
| 543 | 544 |
| 544 // Sent via EmbeddedWorker as an error response of NavigateClient. | 545 // Sent via EmbeddedWorker as an error response of NavigateClient. |
| 545 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, | 546 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, |
| 546 int /* request_id */, | 547 int /* request_id */, |
| 547 GURL /* url */) | 548 GURL /* url */) |
| OLD | NEW |