Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(685)

Side by Side Diff: content/child/web_url_loader_impl.cc

Issue 2964503003: Move NetworkService mojom files to content/public/common. (Closed)
Patch Set: Merge Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 18 matching lines...) Expand all
29 #include "content/child/child_thread_impl.h" 29 #include "content/child/child_thread_impl.h"
30 #include "content/child/ftp_directory_listing_response_delegate.h" 30 #include "content/child/ftp_directory_listing_response_delegate.h"
31 #include "content/child/request_extra_data.h" 31 #include "content/child/request_extra_data.h"
32 #include "content/child/resource_dispatcher.h" 32 #include "content/child/resource_dispatcher.h"
33 #include "content/child/shared_memory_data_consumer_handle.h" 33 #include "content/child/shared_memory_data_consumer_handle.h"
34 #include "content/child/sync_load_response.h" 34 #include "content/child/sync_load_response.h"
35 #include "content/child/web_url_request_util.h" 35 #include "content/child/web_url_request_util.h"
36 #include "content/child/weburlresponse_extradata_impl.h" 36 #include "content/child/weburlresponse_extradata_impl.h"
37 #include "content/common/resource_messages.h" 37 #include "content/common/resource_messages.h"
38 #include "content/common/service_worker/service_worker_types.h" 38 #include "content/common/service_worker/service_worker_types.h"
39 #include "content/common/url_loader.mojom.h"
40 #include "content/public/child/fixed_received_data.h" 39 #include "content/public/child/fixed_received_data.h"
41 #include "content/public/child/request_peer.h" 40 #include "content/public/child/request_peer.h"
42 #include "content/public/common/browser_side_navigation_policy.h" 41 #include "content/public/common/browser_side_navigation_policy.h"
43 #include "content/public/common/content_features.h" 42 #include "content/public/common/content_features.h"
44 #include "content/public/common/resource_request.h" 43 #include "content/public/common/resource_request.h"
45 #include "content/public/common/resource_request_body.h" 44 #include "content/public/common/resource_request_body.h"
46 #include "content/public/common/service_worker_modes.h" 45 #include "content/public/common/service_worker_modes.h"
46 #include "content/public/common/url_loader.mojom.h"
47 #include "net/base/data_url.h" 47 #include "net/base/data_url.h"
48 #include "net/base/filename_util.h" 48 #include "net/base/filename_util.h"
49 #include "net/base/net_errors.h" 49 #include "net/base/net_errors.h"
50 #include "net/cert/cert_status_flags.h" 50 #include "net/cert/cert_status_flags.h"
51 #include "net/cert/ct_sct_to_string.h" 51 #include "net/cert/ct_sct_to_string.h"
52 #include "net/cert/x509_util.h" 52 #include "net/cert/x509_util.h"
53 #include "net/http/http_response_headers.h" 53 #include "net/http/http_response_headers.h"
54 #include "net/http/http_util.h" 54 #include "net/http/http_util.h"
55 #include "net/ssl/ssl_cipher_suite_names.h" 55 #include "net/ssl/ssl_cipher_suite_names.h"
56 #include "net/ssl/ssl_connection_status_flags.h" 56 #include "net/ssl/ssl_connection_status_flags.h"
(...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 void WebURLLoaderImpl::SetDefersLoading(bool value) { 1288 void WebURLLoaderImpl::SetDefersLoading(bool value) {
1289 context_->SetDefersLoading(value); 1289 context_->SetDefersLoading(value);
1290 } 1290 }
1291 1291
1292 void WebURLLoaderImpl::DidChangePriority(WebURLRequest::Priority new_priority, 1292 void WebURLLoaderImpl::DidChangePriority(WebURLRequest::Priority new_priority,
1293 int intra_priority_value) { 1293 int intra_priority_value) {
1294 context_->DidChangePriority(new_priority, intra_priority_value); 1294 context_->DidChangePriority(new_priority, intra_priority_value);
1295 } 1295 }
1296 1296
1297 } // namespace content 1297 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698