| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "content/child/web_url_loader_impl.h" | 5 #include "content/child/web_url_loader_impl.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "content/child/child_thread_impl.h" | 28 #include "content/child/child_thread_impl.h" |
| 29 #include "content/child/ftp_directory_listing_response_delegate.h" | 29 #include "content/child/ftp_directory_listing_response_delegate.h" |
| 30 #include "content/child/request_extra_data.h" | 30 #include "content/child/request_extra_data.h" |
| 31 #include "content/child/resource_dispatcher.h" | 31 #include "content/child/resource_dispatcher.h" |
| 32 #include "content/child/shared_memory_data_consumer_handle.h" | 32 #include "content/child/shared_memory_data_consumer_handle.h" |
| 33 #include "content/child/sync_load_response.h" | 33 #include "content/child/sync_load_response.h" |
| 34 #include "content/child/web_url_request_util.h" | 34 #include "content/child/web_url_request_util.h" |
| 35 #include "content/child/weburlresponse_extradata_impl.h" | 35 #include "content/child/weburlresponse_extradata_impl.h" |
| 36 #include "content/common/resource_messages.h" | 36 #include "content/common/resource_messages.h" |
| 37 #include "content/common/resource_request.h" | 37 #include "content/common/resource_request.h" |
| 38 #include "content/common/resource_request_body_impl.h" | |
| 39 #include "content/common/service_worker/service_worker_types.h" | 38 #include "content/common/service_worker/service_worker_types.h" |
| 40 #include "content/common/url_loader.mojom.h" | 39 #include "content/common/url_loader.mojom.h" |
| 41 #include "content/public/child/fixed_received_data.h" | 40 #include "content/public/child/fixed_received_data.h" |
| 42 #include "content/public/child/request_peer.h" | 41 #include "content/public/child/request_peer.h" |
| 43 #include "content/public/common/browser_side_navigation_policy.h" | 42 #include "content/public/common/browser_side_navigation_policy.h" |
| 43 #include "content/public/common/resource_request_body.h" |
| 44 #include "net/base/data_url.h" | 44 #include "net/base/data_url.h" |
| 45 #include "net/base/filename_util.h" | 45 #include "net/base/filename_util.h" |
| 46 #include "net/base/net_errors.h" | 46 #include "net/base/net_errors.h" |
| 47 #include "net/cert/cert_status_flags.h" | 47 #include "net/cert/cert_status_flags.h" |
| 48 #include "net/cert/ct_sct_to_string.h" | 48 #include "net/cert/ct_sct_to_string.h" |
| 49 #include "net/cert/x509_util.h" | 49 #include "net/cert/x509_util.h" |
| 50 #include "net/http/http_response_headers.h" | 50 #include "net/http/http_response_headers.h" |
| 51 #include "net/http/http_util.h" | 51 #include "net/http/http_util.h" |
| 52 #include "net/ssl/ssl_cipher_suite_names.h" | 52 #include "net/ssl/ssl_cipher_suite_names.h" |
| 53 #include "net/ssl/ssl_connection_status_flags.h" | 53 #include "net/ssl/ssl_connection_status_flags.h" |
| (...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1279 void WebURLLoaderImpl::SetDefersLoading(bool value) { | 1279 void WebURLLoaderImpl::SetDefersLoading(bool value) { |
| 1280 context_->SetDefersLoading(value); | 1280 context_->SetDefersLoading(value); |
| 1281 } | 1281 } |
| 1282 | 1282 |
| 1283 void WebURLLoaderImpl::DidChangePriority(WebURLRequest::Priority new_priority, | 1283 void WebURLLoaderImpl::DidChangePriority(WebURLRequest::Priority new_priority, |
| 1284 int intra_priority_value) { | 1284 int intra_priority_value) { |
| 1285 context_->DidChangePriority(new_priority, intra_priority_value); | 1285 context_->DidChangePriority(new_priority, intra_priority_value); |
| 1286 } | 1286 } |
| 1287 | 1287 |
| 1288 } // namespace content | 1288 } // namespace content |
| OLD | NEW |