| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 264 |
| 265 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_ActivateEventFinished, | 265 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_ActivateEventFinished, |
| 266 int /* request_id */, | 266 int /* request_id */, |
| 267 blink::WebServiceWorkerEventResult, | 267 blink::WebServiceWorkerEventResult, |
| 268 base::Time /* dispatch_event_time */) | 268 base::Time /* dispatch_event_time */) |
| 269 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_ExtendableMessageEventFinished, | 269 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_ExtendableMessageEventFinished, |
| 270 int /* request_id */, | 270 int /* request_id */, |
| 271 blink::WebServiceWorkerEventResult, | 271 blink::WebServiceWorkerEventResult, |
| 272 base::Time /* dispatch_event_time */) | 272 base::Time /* dispatch_event_time */) |
| 273 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_FetchEventResponse, | 273 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_FetchEventResponse, |
| 274 int /* response_id */, | 274 int /* fetch_event_id */, |
| 275 content::ServiceWorkerFetchEventResult, | 275 content::ServiceWorkerFetchEventResult, |
| 276 content::ServiceWorkerResponse, | 276 content::ServiceWorkerResponse, |
| 277 base::Time /* dispatch_event_time */) | 277 base::Time /* dispatch_event_time */) |
| 278 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationClickEventFinished, | 278 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationClickEventFinished, |
| 279 int /* request_id */, | 279 int /* request_id */, |
| 280 blink::WebServiceWorkerEventResult, | 280 blink::WebServiceWorkerEventResult, |
| 281 base::Time /* dispatch_event_time */) | 281 base::Time /* dispatch_event_time */) |
| 282 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationCloseEventFinished, | 282 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_NotificationCloseEventFinished, |
| 283 int /* request_id */, | 283 int /* request_id */, |
| 284 blink::WebServiceWorkerEventResult, | 284 blink::WebServiceWorkerEventResult, |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 | 539 |
| 540 // Sent via EmbeddedWorker as a response of NavigateClient. | 540 // Sent via EmbeddedWorker as a response of NavigateClient. |
| 541 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, | 541 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, |
| 542 int /* request_id */, | 542 int /* request_id */, |
| 543 content::ServiceWorkerClientInfo /* client */) | 543 content::ServiceWorkerClientInfo /* client */) |
| 544 | 544 |
| 545 // Sent via EmbeddedWorker as an error response of NavigateClient. | 545 // Sent via EmbeddedWorker as an error response of NavigateClient. |
| 546 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, | 546 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, |
| 547 int /* request_id */, | 547 int /* request_id */, |
| 548 GURL /* url */) | 548 GURL /* url */) |
| OLD | NEW |