| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 int /* handle_id */) | 238 int /* handle_id */) |
| 239 | 239 |
| 240 // Informs the browser that event handling has finished. | 240 // Informs the browser that event handling has finished. |
| 241 // Routed to the target ServiceWorkerVersion. | 241 // Routed to the target ServiceWorkerVersion. |
| 242 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_InstallEventFinished, | 242 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_InstallEventFinished, |
| 243 int /* request_id */, | 243 int /* request_id */, |
| 244 blink::WebServiceWorkerEventResult, | 244 blink::WebServiceWorkerEventResult, |
| 245 bool /* has_fetch_event_handler */, | 245 bool /* has_fetch_event_handler */, |
| 246 base::Time /* dispatch_event_time */) | 246 base::Time /* dispatch_event_time */) |
| 247 | 247 |
| 248 IPC_MESSAGE_ROUTED4(ServiceWorkerHostMsg_FetchEventResponse, | 248 IPC_MESSAGE_ROUTED3(ServiceWorkerHostMsg_FetchEventResponse, |
| 249 int /* fetch_event_id */, | 249 int /* fetch_event_id */, |
| 250 content::ServiceWorkerFetchEventResult, | |
| 251 content::ServiceWorkerResponse, | 250 content::ServiceWorkerResponse, |
| 252 base::Time /* dispatch_event_time */) | 251 base::Time /* dispatch_event_time */) |
| 253 | 252 |
| 254 // Asks the browser to retrieve client of the sender ServiceWorker. | 253 // Asks the browser to retrieve client of the sender ServiceWorker. |
| 255 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClient, | 254 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClient, |
| 256 int /* request_id */, | 255 int /* request_id */, |
| 257 std::string /* client_uuid */) | 256 std::string /* client_uuid */) |
| 258 | 257 |
| 259 // Asks the browser to retrieve clients of the sender ServiceWorker. | 258 // Asks the browser to retrieve clients of the sender ServiceWorker. |
| 260 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClients, | 259 IPC_MESSAGE_ROUTED2(ServiceWorkerHostMsg_GetClients, |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 | 512 |
| 514 // Sent via EmbeddedWorker as a response of NavigateClient. | 513 // Sent via EmbeddedWorker as a response of NavigateClient. |
| 515 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, | 514 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, |
| 516 int /* request_id */, | 515 int /* request_id */, |
| 517 content::ServiceWorkerClientInfo /* client */) | 516 content::ServiceWorkerClientInfo /* client */) |
| 518 | 517 |
| 519 // Sent via EmbeddedWorker as an error response of NavigateClient. | 518 // Sent via EmbeddedWorker as an error response of NavigateClient. |
| 520 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, | 519 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, |
| 521 int /* request_id */, | 520 int /* request_id */, |
| 522 GURL /* url */) | 521 GURL /* url */) |
| OLD | NEW |