| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 IPC_STRUCT_TRAITS_MEMBER(transition_type) | 250 IPC_STRUCT_TRAITS_MEMBER(transition_type) |
| 251 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) | 251 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) |
| 252 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 252 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
| 253 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 253 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
| 254 IPC_STRUCT_TRAITS_MEMBER(allow_download) | 254 IPC_STRUCT_TRAITS_MEMBER(allow_download) |
| 255 IPC_STRUCT_TRAITS_MEMBER(report_raw_headers) | 255 IPC_STRUCT_TRAITS_MEMBER(report_raw_headers) |
| 256 IPC_STRUCT_TRAITS_MEMBER(previews_state) | 256 IPC_STRUCT_TRAITS_MEMBER(previews_state) |
| 257 IPC_STRUCT_TRAITS_MEMBER(resource_body_stream_url) | 257 IPC_STRUCT_TRAITS_MEMBER(resource_body_stream_url) |
| 258 IPC_STRUCT_TRAITS_MEMBER(initiated_in_secure_context) | 258 IPC_STRUCT_TRAITS_MEMBER(initiated_in_secure_context) |
| 259 IPC_STRUCT_TRAITS_MEMBER(download_to_network_cache_only) | 259 IPC_STRUCT_TRAITS_MEMBER(download_to_network_cache_only) |
| 260 IPC_STRUCT_TRAITS_MEMBER(devtools_agent_host_id) |
| 261 IPC_STRUCT_TRAITS_MEMBER(devtools_request_id) |
| 260 IPC_STRUCT_TRAITS_END() | 262 IPC_STRUCT_TRAITS_END() |
| 261 | 263 |
| 262 // Parameters for a ResourceMsg_RequestComplete | 264 // Parameters for a ResourceMsg_RequestComplete |
| 263 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequestCompletionStatus) | 265 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequestCompletionStatus) |
| 264 IPC_STRUCT_TRAITS_MEMBER(error_code) | 266 IPC_STRUCT_TRAITS_MEMBER(error_code) |
| 265 IPC_STRUCT_TRAITS_MEMBER(was_ignored_by_handler) | 267 IPC_STRUCT_TRAITS_MEMBER(was_ignored_by_handler) |
| 266 IPC_STRUCT_TRAITS_MEMBER(exists_in_cache) | 268 IPC_STRUCT_TRAITS_MEMBER(exists_in_cache) |
| 267 IPC_STRUCT_TRAITS_MEMBER(completion_time) | 269 IPC_STRUCT_TRAITS_MEMBER(completion_time) |
| 268 IPC_STRUCT_TRAITS_MEMBER(encoded_data_length) | 270 IPC_STRUCT_TRAITS_MEMBER(encoded_data_length) |
| 269 IPC_STRUCT_TRAITS_MEMBER(encoded_body_length) | 271 IPC_STRUCT_TRAITS_MEMBER(encoded_body_length) |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 | 371 |
| 370 // Sent when the renderer process deletes a resource loader. | 372 // Sent when the renderer process deletes a resource loader. |
| 371 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 373 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
| 372 int /* request_id */) | 374 int /* request_id */) |
| 373 | 375 |
| 374 // Sent by the renderer when a resource request changes priority. | 376 // Sent by the renderer when a resource request changes priority. |
| 375 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 377 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
| 376 int /* request_id */, | 378 int /* request_id */, |
| 377 net::RequestPriority, | 379 net::RequestPriority, |
| 378 int /* intra_priority_value */) | 380 int /* intra_priority_value */) |
| OLD | NEW |