| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 IPC_STRUCT_TRAITS_BEGIN(net::SignedCertificateTimestampAndStatus) | 207 IPC_STRUCT_TRAITS_BEGIN(net::SignedCertificateTimestampAndStatus) |
| 208 IPC_STRUCT_TRAITS_MEMBER(sct) | 208 IPC_STRUCT_TRAITS_MEMBER(sct) |
| 209 IPC_STRUCT_TRAITS_MEMBER(status) | 209 IPC_STRUCT_TRAITS_MEMBER(status) |
| 210 IPC_STRUCT_TRAITS_END() | 210 IPC_STRUCT_TRAITS_END() |
| 211 | 211 |
| 212 IPC_ENUM_TRAITS_MAX_VALUE(net::ct::SCTVerifyStatus, net::ct::SCT_STATUS_MAX) | 212 IPC_ENUM_TRAITS_MAX_VALUE(net::ct::SCTVerifyStatus, net::ct::SCT_STATUS_MAX) |
| 213 | 213 |
| 214 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequest) | 214 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequest) |
| 215 IPC_STRUCT_TRAITS_MEMBER(method) | 215 IPC_STRUCT_TRAITS_MEMBER(method) |
| 216 IPC_STRUCT_TRAITS_MEMBER(url) | 216 IPC_STRUCT_TRAITS_MEMBER(url) |
| 217 IPC_STRUCT_TRAITS_MEMBER(request_start) |
| 217 IPC_STRUCT_TRAITS_MEMBER(first_party_for_cookies) | 218 IPC_STRUCT_TRAITS_MEMBER(first_party_for_cookies) |
| 218 IPC_STRUCT_TRAITS_MEMBER(request_initiator) | 219 IPC_STRUCT_TRAITS_MEMBER(request_initiator) |
| 219 IPC_STRUCT_TRAITS_MEMBER(referrer) | 220 IPC_STRUCT_TRAITS_MEMBER(referrer) |
| 220 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) | 221 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) |
| 221 IPC_STRUCT_TRAITS_MEMBER(visibility_state) | 222 IPC_STRUCT_TRAITS_MEMBER(visibility_state) |
| 222 IPC_STRUCT_TRAITS_MEMBER(headers) | 223 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 223 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 224 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 224 IPC_STRUCT_TRAITS_MEMBER(origin_pid) | 225 IPC_STRUCT_TRAITS_MEMBER(origin_pid) |
| 225 IPC_STRUCT_TRAITS_MEMBER(resource_type) | 226 IPC_STRUCT_TRAITS_MEMBER(resource_type) |
| 226 IPC_STRUCT_TRAITS_MEMBER(priority) | 227 IPC_STRUCT_TRAITS_MEMBER(priority) |
| (...skipping 149 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 |