| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // IPC messages for resource loading. | 5 // IPC messages for resource loading. |
| 6 // | 6 // |
| 7 // NOTE: All messages must send an |int request_id| as their first parameter. | 7 // NOTE: All messages must send an |int request_id| as their first parameter. |
| 8 | 8 |
| 9 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 10 | 10 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 IPC_STRUCT_TRAITS_MEMBER(alpn_negotiated_protocol) | 174 IPC_STRUCT_TRAITS_MEMBER(alpn_negotiated_protocol) |
| 175 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 175 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
| 176 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker) | 176 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker) |
| 177 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) | 177 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) |
| 178 IPC_STRUCT_TRAITS_MEMBER(url_list_via_service_worker) | 178 IPC_STRUCT_TRAITS_MEMBER(url_list_via_service_worker) |
| 179 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) | 179 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) |
| 180 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) | 180 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) |
| 181 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) | 181 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) |
| 182 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) | 182 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) |
| 183 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) | 183 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) |
| 184 IPC_STRUCT_TRAITS_MEMBER(did_service_worker_navigation_preload) |
| 184 IPC_STRUCT_TRAITS_MEMBER(previews_state) | 185 IPC_STRUCT_TRAITS_MEMBER(previews_state) |
| 185 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type) | 186 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type) |
| 186 IPC_STRUCT_TRAITS_MEMBER(certificate) | 187 IPC_STRUCT_TRAITS_MEMBER(certificate) |
| 187 IPC_STRUCT_TRAITS_MEMBER(cert_status) | 188 IPC_STRUCT_TRAITS_MEMBER(cert_status) |
| 188 IPC_STRUCT_TRAITS_MEMBER(ssl_connection_status) | 189 IPC_STRUCT_TRAITS_MEMBER(ssl_connection_status) |
| 189 IPC_STRUCT_TRAITS_MEMBER(ssl_key_exchange_group) | 190 IPC_STRUCT_TRAITS_MEMBER(ssl_key_exchange_group) |
| 190 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps) | 191 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps) |
| 191 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names) | 192 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names) |
| 192 IPC_STRUCT_TRAITS_END() | 193 IPC_STRUCT_TRAITS_END() |
| 193 | 194 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 | 377 |
| 377 // Sent when the renderer process deletes a resource loader. | 378 // Sent when the renderer process deletes a resource loader. |
| 378 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 379 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
| 379 int /* request_id */) | 380 int /* request_id */) |
| 380 | 381 |
| 381 // Sent by the renderer when a resource request changes priority. | 382 // Sent by the renderer when a resource request changes priority. |
| 382 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 383 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
| 383 int /* request_id */, | 384 int /* request_id */, |
| 384 net::RequestPriority, | 385 net::RequestPriority, |
| 385 int /* intra_priority_value */) | 386 int /* intra_priority_value */) |
| OLD | NEW |