| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 IPC_STRUCT_TRAITS_MEMBER(proxy_server) | 152 IPC_STRUCT_TRAITS_MEMBER(proxy_server) |
| 153 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) | 153 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) |
| 154 IPC_STRUCT_TRAITS_END() | 154 IPC_STRUCT_TRAITS_END() |
| 155 | 155 |
| 156 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) | 156 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) |
| 157 IPC_STRUCT_TRAITS_MEMBER(status_code) | 157 IPC_STRUCT_TRAITS_MEMBER(status_code) |
| 158 IPC_STRUCT_TRAITS_MEMBER(new_method) | 158 IPC_STRUCT_TRAITS_MEMBER(new_method) |
| 159 IPC_STRUCT_TRAITS_MEMBER(new_url) | 159 IPC_STRUCT_TRAITS_MEMBER(new_url) |
| 160 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) | 160 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) |
| 161 IPC_STRUCT_TRAITS_MEMBER(new_referrer) | 161 IPC_STRUCT_TRAITS_MEMBER(new_referrer) |
| 162 IPC_STRUCT_TRAITS_MEMBER(referred_token_binding_host) |
| 162 IPC_STRUCT_TRAITS_END() | 163 IPC_STRUCT_TRAITS_END() |
| 163 | 164 |
| 164 // Parameters for a resource request. | 165 // Parameters for a resource request. |
| 165 IPC_STRUCT_BEGIN(ResourceHostMsg_Request) | 166 IPC_STRUCT_BEGIN(ResourceHostMsg_Request) |
| 166 // The request method: GET, POST, etc. | 167 // The request method: GET, POST, etc. |
| 167 IPC_STRUCT_MEMBER(std::string, method) | 168 IPC_STRUCT_MEMBER(std::string, method) |
| 168 | 169 |
| 169 // The requested URL. | 170 // The requested URL. |
| 170 IPC_STRUCT_MEMBER(GURL, url) | 171 IPC_STRUCT_MEMBER(GURL, url) |
| 171 | 172 |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 | 450 |
| 450 // Sent when the renderer process deletes a resource loader. | 451 // Sent when the renderer process deletes a resource loader. |
| 451 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 452 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
| 452 int /* request_id */) | 453 int /* request_id */) |
| 453 | 454 |
| 454 // Sent by the renderer when a resource request changes priority. | 455 // Sent by the renderer when a resource request changes priority. |
| 455 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 456 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
| 456 int /* request_id */, | 457 int /* request_id */, |
| 457 net::RequestPriority, | 458 net::RequestPriority, |
| 458 int /* intra_priority_value */) | 459 int /* intra_priority_value */) |
| OLD | NEW |