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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) | 175 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) |
176 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) | 176 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) |
177 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) | 177 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) |
178 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) | 178 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) |
179 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) | 179 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) |
180 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) | 180 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) |
181 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) | 181 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) |
182 IPC_STRUCT_TRAITS_MEMBER(proxy_server) | 182 IPC_STRUCT_TRAITS_MEMBER(proxy_server) |
183 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) | 183 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) |
184 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type) | 184 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type) |
| 185 IPC_STRUCT_TRAITS_MEMBER(certificate) |
| 186 IPC_STRUCT_TRAITS_MEMBER(cert_status) |
| 187 IPC_STRUCT_TRAITS_MEMBER(ssl_connection_status) |
185 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps) | 188 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps) |
186 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names) | 189 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names) |
187 IPC_STRUCT_TRAITS_END() | 190 IPC_STRUCT_TRAITS_END() |
188 | 191 |
189 IPC_ENUM_TRAITS_MAX_VALUE(net::URLRequest::ReferrerPolicy, | 192 IPC_ENUM_TRAITS_MAX_VALUE(net::URLRequest::ReferrerPolicy, |
190 net::URLRequest::MAX_REFERRER_POLICY - 1) | 193 net::URLRequest::MAX_REFERRER_POLICY - 1) |
191 | 194 |
192 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) | 195 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) |
193 IPC_STRUCT_TRAITS_MEMBER(status_code) | 196 IPC_STRUCT_TRAITS_MEMBER(status_code) |
194 IPC_STRUCT_TRAITS_MEMBER(new_method) | 197 IPC_STRUCT_TRAITS_MEMBER(new_method) |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 | 378 |
376 // Sent when the renderer process deletes a resource loader. | 379 // Sent when the renderer process deletes a resource loader. |
377 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 380 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
378 int /* request_id */) | 381 int /* request_id */) |
379 | 382 |
380 // Sent by the renderer when a resource request changes priority. | 383 // Sent by the renderer when a resource request changes priority. |
381 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 384 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
382 int /* request_id */, | 385 int /* request_id */, |
383 net::RequestPriority, | 386 net::RequestPriority, |
384 int /* intra_priority_value */) | 387 int /* intra_priority_value */) |
OLD | NEW |