| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 IPC_STRUCT_TRAITS_MEMBER(request_context_type) | 69 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
| 70 IPC_STRUCT_TRAITS_MEMBER(frame_type) | 70 IPC_STRUCT_TRAITS_MEMBER(frame_type) |
| 71 IPC_STRUCT_TRAITS_MEMBER(url) | 71 IPC_STRUCT_TRAITS_MEMBER(url) |
| 72 IPC_STRUCT_TRAITS_MEMBER(method) | 72 IPC_STRUCT_TRAITS_MEMBER(method) |
| 73 IPC_STRUCT_TRAITS_MEMBER(headers) | 73 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 74 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) | 74 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) |
| 75 IPC_STRUCT_TRAITS_MEMBER(blob_size) | 75 IPC_STRUCT_TRAITS_MEMBER(blob_size) |
| 76 IPC_STRUCT_TRAITS_MEMBER(referrer) | 76 IPC_STRUCT_TRAITS_MEMBER(referrer) |
| 77 IPC_STRUCT_TRAITS_MEMBER(credentials_mode) | 77 IPC_STRUCT_TRAITS_MEMBER(credentials_mode) |
| 78 IPC_STRUCT_TRAITS_MEMBER(redirect_mode) | 78 IPC_STRUCT_TRAITS_MEMBER(redirect_mode) |
| 79 IPC_STRUCT_TRAITS_MEMBER(integrity) |
| 79 IPC_STRUCT_TRAITS_MEMBER(client_id) | 80 IPC_STRUCT_TRAITS_MEMBER(client_id) |
| 80 IPC_STRUCT_TRAITS_MEMBER(is_reload) | 81 IPC_STRUCT_TRAITS_MEMBER(is_reload) |
| 81 IPC_STRUCT_TRAITS_MEMBER(fetch_type) | 82 IPC_STRUCT_TRAITS_MEMBER(fetch_type) |
| 82 IPC_STRUCT_TRAITS_END() | 83 IPC_STRUCT_TRAITS_END() |
| 83 | 84 |
| 84 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerFetchEventResult, | 85 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerFetchEventResult, |
| 85 content::SERVICE_WORKER_FETCH_EVENT_LAST) | 86 content::SERVICE_WORKER_FETCH_EVENT_LAST) |
| 86 | 87 |
| 87 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse) | 88 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse) |
| 88 IPC_STRUCT_TRAITS_MEMBER(url_list) | 89 IPC_STRUCT_TRAITS_MEMBER(url_list) |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 | 510 |
| 510 // Sent via EmbeddedWorker as a response of NavigateClient. | 511 // Sent via EmbeddedWorker as a response of NavigateClient. |
| 511 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, | 512 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, |
| 512 int /* request_id */, | 513 int /* request_id */, |
| 513 content::ServiceWorkerClientInfo /* client */) | 514 content::ServiceWorkerClientInfo /* client */) |
| 514 | 515 |
| 515 // Sent via EmbeddedWorker as an error response of NavigateClient. | 516 // Sent via EmbeddedWorker as an error response of NavigateClient. |
| 516 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, | 517 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, |
| 517 int /* request_id */, | 518 int /* request_id */, |
| 518 GURL /* url */) | 519 GURL /* url */) |
| OLD | NEW |