| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) | 173 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) |
| 174 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) | 174 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) |
| 175 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) | 175 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) |
| 176 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) | 176 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) |
| 177 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) | 177 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) |
| 178 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) | 178 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) |
| 179 IPC_STRUCT_TRAITS_MEMBER(proxy_server) | 179 IPC_STRUCT_TRAITS_MEMBER(proxy_server) |
| 180 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) | 180 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) |
| 181 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type) | 181 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type) |
| 182 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps) | 182 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps) |
| 183 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names) |
| 183 IPC_STRUCT_TRAITS_END() | 184 IPC_STRUCT_TRAITS_END() |
| 184 | 185 |
| 185 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) | 186 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) |
| 186 IPC_STRUCT_TRAITS_MEMBER(status_code) | 187 IPC_STRUCT_TRAITS_MEMBER(status_code) |
| 187 IPC_STRUCT_TRAITS_MEMBER(new_method) | 188 IPC_STRUCT_TRAITS_MEMBER(new_method) |
| 188 IPC_STRUCT_TRAITS_MEMBER(new_url) | 189 IPC_STRUCT_TRAITS_MEMBER(new_url) |
| 189 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) | 190 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) |
| 190 IPC_STRUCT_TRAITS_MEMBER(new_referrer) | 191 IPC_STRUCT_TRAITS_MEMBER(new_referrer) |
| 191 IPC_STRUCT_TRAITS_MEMBER(referred_token_binding_host) | 192 IPC_STRUCT_TRAITS_MEMBER(referred_token_binding_host) |
| 192 IPC_STRUCT_TRAITS_END() | 193 IPC_STRUCT_TRAITS_END() |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 | 365 |
| 365 // Sent when the renderer process deletes a resource loader. | 366 // Sent when the renderer process deletes a resource loader. |
| 366 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 367 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
| 367 int /* request_id */) | 368 int /* request_id */) |
| 368 | 369 |
| 369 // Sent by the renderer when a resource request changes priority. | 370 // Sent by the renderer when a resource request changes priority. |
| 370 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 371 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
| 371 int /* request_id */, | 372 int /* request_id */, |
| 372 net::RequestPriority, | 373 net::RequestPriority, |
| 373 int /* intra_priority_value */) | 374 int /* intra_priority_value */) |
| OLD | NEW |