| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 IPC_STRUCT_TRAITS_MEMBER(priority) | 258 IPC_STRUCT_TRAITS_MEMBER(priority) |
| 259 IPC_STRUCT_TRAITS_MEMBER(request_context) | 259 IPC_STRUCT_TRAITS_MEMBER(request_context) |
| 260 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id) | 260 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id) |
| 261 IPC_STRUCT_TRAITS_MEMBER(should_reset_appcache) | 261 IPC_STRUCT_TRAITS_MEMBER(should_reset_appcache) |
| 262 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) | 262 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) |
| 263 IPC_STRUCT_TRAITS_MEMBER(originated_from_service_worker) | 263 IPC_STRUCT_TRAITS_MEMBER(originated_from_service_worker) |
| 264 IPC_STRUCT_TRAITS_MEMBER(service_worker_mode) | 264 IPC_STRUCT_TRAITS_MEMBER(service_worker_mode) |
| 265 IPC_STRUCT_TRAITS_MEMBER(fetch_request_mode) | 265 IPC_STRUCT_TRAITS_MEMBER(fetch_request_mode) |
| 266 IPC_STRUCT_TRAITS_MEMBER(fetch_credentials_mode) | 266 IPC_STRUCT_TRAITS_MEMBER(fetch_credentials_mode) |
| 267 IPC_STRUCT_TRAITS_MEMBER(fetch_redirect_mode) | 267 IPC_STRUCT_TRAITS_MEMBER(fetch_redirect_mode) |
| 268 IPC_STRUCT_TRAITS_MEMBER(fetch_integrity) |
| 268 IPC_STRUCT_TRAITS_MEMBER(fetch_request_context_type) | 269 IPC_STRUCT_TRAITS_MEMBER(fetch_request_context_type) |
| 269 IPC_STRUCT_TRAITS_MEMBER(fetch_mixed_content_context_type) | 270 IPC_STRUCT_TRAITS_MEMBER(fetch_mixed_content_context_type) |
| 270 IPC_STRUCT_TRAITS_MEMBER(fetch_frame_type) | 271 IPC_STRUCT_TRAITS_MEMBER(fetch_frame_type) |
| 271 IPC_STRUCT_TRAITS_MEMBER(request_body) | 272 IPC_STRUCT_TRAITS_MEMBER(request_body) |
| 272 IPC_STRUCT_TRAITS_MEMBER(download_to_file) | 273 IPC_STRUCT_TRAITS_MEMBER(download_to_file) |
| 273 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 274 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| 274 IPC_STRUCT_TRAITS_MEMBER(enable_load_timing) | 275 IPC_STRUCT_TRAITS_MEMBER(enable_load_timing) |
| 275 IPC_STRUCT_TRAITS_MEMBER(enable_upload_progress) | 276 IPC_STRUCT_TRAITS_MEMBER(enable_upload_progress) |
| 276 IPC_STRUCT_TRAITS_MEMBER(do_not_prompt_for_login) | 277 IPC_STRUCT_TRAITS_MEMBER(do_not_prompt_for_login) |
| 277 IPC_STRUCT_TRAITS_MEMBER(render_frame_id) | 278 IPC_STRUCT_TRAITS_MEMBER(render_frame_id) |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 402 |
| 402 // Sent when the renderer process deletes a resource loader. | 403 // Sent when the renderer process deletes a resource loader. |
| 403 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 404 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
| 404 int /* request_id */) | 405 int /* request_id */) |
| 405 | 406 |
| 406 // Sent by the renderer when a resource request changes priority. | 407 // Sent by the renderer when a resource request changes priority. |
| 407 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 408 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
| 408 int /* request_id */, | 409 int /* request_id */, |
| 409 net::RequestPriority, | 410 net::RequestPriority, |
| 410 int /* intra_priority_value */) | 411 int /* intra_priority_value */) |
| OLD | NEW |