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

Side by Side Diff: ios/web/shell/shell_url_request_context_getter.mm

Issue 2605913002: Fix include import in ios/web (Closed)
Patch Set: add missing #import Created 3 years, 11 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 | « ios/web/shell/shell_main_delegate.mm ('k') | ios/web/shell/shell_web_client.h » ('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 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 "ios/web/shell/shell_url_request_context_getter.h" 5 #include "ios/web/shell/shell_url_request_context_getter.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/base_paths.h" 10 #include "base/base_paths.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/path_service.h" 14 #include "base/path_service.h"
15 #include "base/threading/worker_pool.h" 15 #include "base/threading/worker_pool.h"
16 #include "ios/net/cookies/cookie_store_ios.h" 16 #import "ios/net/cookies/cookie_store_ios.h"
17 #include "ios/web/public/web_client.h" 17 #import "ios/web/public/web_client.h"
18 #include "ios/web/public/web_thread.h" 18 #include "ios/web/public/web_thread.h"
19 #include "ios/web/shell/shell_network_delegate.h" 19 #include "ios/web/shell/shell_network_delegate.h"
20 #include "net/base/cache_type.h" 20 #include "net/base/cache_type.h"
21 #include "net/cert/cert_verifier.h" 21 #include "net/cert/cert_verifier.h"
22 #include "net/cert/ct_policy_enforcer.h" 22 #include "net/cert/ct_policy_enforcer.h"
23 #include "net/cert/multi_log_ct_verifier.h" 23 #include "net/cert/multi_log_ct_verifier.h"
24 #include "net/dns/host_resolver.h" 24 #include "net/dns/host_resolver.h"
25 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" 25 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h"
26 #include "net/http/http_auth_handler_factory.h" 26 #include "net/http/http_auth_handler_factory.h"
27 #include "net/http/http_cache.h" 27 #include "net/http/http_cache.h"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 168
169 return url_request_context_.get(); 169 return url_request_context_.get();
170 } 170 }
171 171
172 scoped_refptr<base::SingleThreadTaskRunner> 172 scoped_refptr<base::SingleThreadTaskRunner>
173 ShellURLRequestContextGetter::GetNetworkTaskRunner() const { 173 ShellURLRequestContextGetter::GetNetworkTaskRunner() const {
174 return network_task_runner_; 174 return network_task_runner_;
175 } 175 }
176 176
177 } // namespace web 177 } // namespace web
OLDNEW
« no previous file with comments | « ios/web/shell/shell_main_delegate.mm ('k') | ios/web/shell/shell_web_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698