| 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 #include "base/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_proxy) | 125 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_proxy) |
| 126 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol) | 126 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol) |
| 127 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 127 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
| 128 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker) | 128 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker) |
| 129 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) | 129 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) |
| 130 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) | 130 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) |
| 131 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) | 131 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) |
| 132 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_start) | 132 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_start) |
| 133 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_ready) | 133 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_ready) |
| 134 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_end) | 134 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_end) |
| 135 IPC_STRUCT_TRAITS_MEMBER(proxy_server) |
| 135 IPC_STRUCT_TRAITS_END() | 136 IPC_STRUCT_TRAITS_END() |
| 136 | 137 |
| 137 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) | 138 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) |
| 138 IPC_STRUCT_TRAITS_MEMBER(status_code) | 139 IPC_STRUCT_TRAITS_MEMBER(status_code) |
| 139 IPC_STRUCT_TRAITS_MEMBER(new_method) | 140 IPC_STRUCT_TRAITS_MEMBER(new_method) |
| 140 IPC_STRUCT_TRAITS_MEMBER(new_url) | 141 IPC_STRUCT_TRAITS_MEMBER(new_url) |
| 141 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) | 142 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) |
| 142 IPC_STRUCT_TRAITS_MEMBER(new_referrer) | 143 IPC_STRUCT_TRAITS_MEMBER(new_referrer) |
| 143 IPC_STRUCT_TRAITS_END() | 144 IPC_STRUCT_TRAITS_END() |
| 144 | 145 |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 | 383 |
| 383 // Sent when the renderer process deletes a resource loader. | 384 // Sent when the renderer process deletes a resource loader. |
| 384 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 385 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
| 385 int /* request_id */) | 386 int /* request_id */) |
| 386 | 387 |
| 387 // Sent by the renderer when a resource request changes priority. | 388 // Sent by the renderer when a resource request changes priority. |
| 388 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 389 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
| 389 int /* request_id */, | 390 int /* request_id */, |
| 390 net::RequestPriority, | 391 net::RequestPriority, |
| 391 int /* intra_priority_value */) | 392 int /* intra_priority_value */) |
| OLD | NEW |