OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ |
6 #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 class CertVerifier; | 16 class CertVerifier; |
17 class ChannelIDService; | 17 class ChannelIDService; |
18 class CookieStore; | 18 class CookieStore; |
19 class CTPolicyEnforcer; | 19 class CTPolicyEnforcer; |
20 class CTVerifier; | 20 class CTVerifier; |
21 class FtpTransactionFactory; | |
22 class HostResolver; | 21 class HostResolver; |
23 class HttpAuthHandlerFactory; | 22 class HttpAuthHandlerFactory; |
24 class HttpNetworkSession; | 23 class HttpNetworkSession; |
25 class HttpServerProperties; | 24 class HttpServerProperties; |
26 class HttpTransactionFactory; | 25 class HttpTransactionFactory; |
27 class HttpUserAgentSettings; | 26 class HttpUserAgentSettings; |
28 class NetLog; | 27 class NetLog; |
29 class NetworkDelegate; | 28 class NetworkDelegate; |
30 class ProxyDelegate; | 29 class ProxyDelegate; |
31 class ProxyService; | 30 class ProxyService; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 std::unique_ptr<URLRequestJobFactory> job_factory_; | 116 std::unique_ptr<URLRequestJobFactory> job_factory_; |
118 std::unique_ptr<URLRequestThrottlerManager> throttler_manager_; | 117 std::unique_ptr<URLRequestThrottlerManager> throttler_manager_; |
119 std::unique_ptr<SdchManager> sdch_manager_; | 118 std::unique_ptr<SdchManager> sdch_manager_; |
120 | 119 |
121 DISALLOW_COPY_AND_ASSIGN(URLRequestContextStorage); | 120 DISALLOW_COPY_AND_ASSIGN(URLRequestContextStorage); |
122 }; | 121 }; |
123 | 122 |
124 } // namespace net | 123 } // namespace net |
125 | 124 |
126 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ | 125 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ |
OLD | NEW |