| 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 #ifndef IOS_WEB_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 5 #ifndef IOS_WEB_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| 6 #define IOS_WEB_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 6 #define IOS_WEB_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/single_thread_task_runner.h" | 14 #include "base/single_thread_task_runner.h" |
| 15 #include "net/url_request/url_request_context_getter.h" | 15 #include "net/url_request/url_request_context_getter.h" |
| 16 | 16 |
| 17 namespace net { | 17 namespace net { |
| 18 class HostResolver; | |
| 19 class MappedHostResolver; | |
| 20 class NetworkDelegate; | 18 class NetworkDelegate; |
| 21 class NetLog; | 19 class NetLog; |
| 22 class ProxyConfigService; | 20 class ProxyConfigService; |
| 23 class TransportSecurityPersister; | 21 class TransportSecurityPersister; |
| 24 class URLRequestContext; | 22 class URLRequestContext; |
| 25 class URLRequestContextStorage; | 23 class URLRequestContextStorage; |
| 26 } | 24 } |
| 27 | 25 |
| 28 namespace web { | 26 namespace web { |
| 29 | 27 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 55 std::unique_ptr<net::NetLog> net_log_; | 53 std::unique_ptr<net::NetLog> net_log_; |
| 56 std::unique_ptr<net::TransportSecurityPersister> | 54 std::unique_ptr<net::TransportSecurityPersister> |
| 57 transport_security_persister_; | 55 transport_security_persister_; |
| 58 | 56 |
| 59 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); | 57 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
| 60 }; | 58 }; |
| 61 | 59 |
| 62 } // namespace web | 60 } // namespace web |
| 63 | 61 |
| 64 #endif // IOS_WEB_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 62 #endif // IOS_WEB_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| OLD | NEW |