| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 | 209 |
| 210 IPC_ENUM_TRAITS_MAX_VALUE(net::ct::SCTVerifyStatus, net::ct::SCT_STATUS_MAX) | 210 IPC_ENUM_TRAITS_MAX_VALUE(net::ct::SCTVerifyStatus, net::ct::SCT_STATUS_MAX) |
| 211 | 211 |
| 212 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequest) | 212 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequest) |
| 213 IPC_STRUCT_TRAITS_MEMBER(method) | 213 IPC_STRUCT_TRAITS_MEMBER(method) |
| 214 IPC_STRUCT_TRAITS_MEMBER(url) | 214 IPC_STRUCT_TRAITS_MEMBER(url) |
| 215 IPC_STRUCT_TRAITS_MEMBER(first_party_for_cookies) | 215 IPC_STRUCT_TRAITS_MEMBER(first_party_for_cookies) |
| 216 IPC_STRUCT_TRAITS_MEMBER(request_initiator) | 216 IPC_STRUCT_TRAITS_MEMBER(request_initiator) |
| 217 IPC_STRUCT_TRAITS_MEMBER(referrer) | 217 IPC_STRUCT_TRAITS_MEMBER(referrer) |
| 218 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 218 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
| 219 IPC_STRUCT_TRAITS_MEMBER(visiblity_state) | 219 IPC_STRUCT_TRAITS_MEMBER(visibility_state) |
| 220 IPC_STRUCT_TRAITS_MEMBER(headers) | 220 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 221 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 221 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 222 IPC_STRUCT_TRAITS_MEMBER(origin_pid) | 222 IPC_STRUCT_TRAITS_MEMBER(origin_pid) |
| 223 IPC_STRUCT_TRAITS_MEMBER(resource_type) | 223 IPC_STRUCT_TRAITS_MEMBER(resource_type) |
| 224 IPC_STRUCT_TRAITS_MEMBER(priority) | 224 IPC_STRUCT_TRAITS_MEMBER(priority) |
| 225 IPC_STRUCT_TRAITS_MEMBER(request_context) | 225 IPC_STRUCT_TRAITS_MEMBER(request_context) |
| 226 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id) | 226 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id) |
| 227 IPC_STRUCT_TRAITS_MEMBER(should_reset_appcache) | 227 IPC_STRUCT_TRAITS_MEMBER(should_reset_appcache) |
| 228 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) | 228 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) |
| 229 IPC_STRUCT_TRAITS_MEMBER(originated_from_service_worker) | 229 IPC_STRUCT_TRAITS_MEMBER(originated_from_service_worker) |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 | 378 |
| 379 // Sent when the renderer process deletes a resource loader. | 379 // Sent when the renderer process deletes a resource loader. |
| 380 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 380 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
| 381 int /* request_id */) | 381 int /* request_id */) |
| 382 | 382 |
| 383 // Sent by the renderer when a resource request changes priority. | 383 // Sent by the renderer when a resource request changes priority. |
| 384 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 384 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
| 385 int /* request_id */, | 385 int /* request_id */, |
| 386 net::RequestPriority, | 386 net::RequestPriority, |
| 387 int /* intra_priority_value */) | 387 int /* intra_priority_value */) |
| OLD | NEW |