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

Side by Side Diff: content/network/network_service_url_loader_factory_impl.cc

Issue 2969463003: Move resource_request.h 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
« no previous file with comments | « content/network/DEPS ('k') | content/public/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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/network/network_service_url_loader_factory_impl.h" 5 #include "content/network/network_service_url_loader_factory_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/common/resource_request.h"
9 #include "content/network/url_loader_impl.h" 8 #include "content/network/url_loader_impl.h"
9 #include "content/public/common/resource_request.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 NetworkServiceURLLoaderFactoryImpl::NetworkServiceURLLoaderFactoryImpl( 13 NetworkServiceURLLoaderFactoryImpl::NetworkServiceURLLoaderFactoryImpl(
14 NetworkContext* context, 14 NetworkContext* context,
15 uint32_t process_id) 15 uint32_t process_id)
16 : context_(context), process_id_(process_id) { 16 : context_(context), process_id_(process_id) {
17 ignore_result(process_id_); 17 ignore_result(process_id_);
18 } 18 }
19 19
(...skipping 19 matching lines...) Expand all
39 const ResourceRequest& url_request, 39 const ResourceRequest& url_request,
40 SyncLoadCallback callback) { 40 SyncLoadCallback callback) {
41 NOTIMPLEMENTED(); 41 NOTIMPLEMENTED();
42 42
43 SyncLoadResult result; 43 SyncLoadResult result;
44 result.error_code = net::ERR_NOT_IMPLEMENTED; 44 result.error_code = net::ERR_NOT_IMPLEMENTED;
45 std::move(callback).Run(result); 45 std::move(callback).Run(result);
46 } 46 }
47 47
48 } // namespace content 48 } // namespace content
OLDNEW
« no previous file with comments | « content/network/DEPS ('k') | content/public/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698