| 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_HTTP_HTTP_STREAM_FACTORY_H_ | 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_H_ |
| 6 #define NET_HTTP_HTTP_STREAM_FACTORY_H_ | 6 #define NET_HTTP_HTTP_STREAM_FACTORY_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 class GURL; | 25 class GURL; |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class Value; | 28 class Value; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace net { | 31 namespace net { |
| 32 | 32 |
| 33 class AuthCredentials; | 33 class AuthCredentials; |
| 34 class NetLogWithSource; | |
| 35 class BidirectionalStreamImpl; | 34 class BidirectionalStreamImpl; |
| 36 class HostMappingRules; | 35 class HostMappingRules; |
| 37 class HostPortPair; | 36 class HostPortPair; |
| 38 class HttpAuthController; | 37 class HttpAuthController; |
| 39 class HttpNetworkSession; | 38 class HttpNetworkSession; |
| 40 class HttpResponseHeaders; | 39 class HttpResponseHeaders; |
| 41 class HttpResponseInfo; | 40 class HttpResponseInfo; |
| 42 class HttpServerProperties; | 41 class HttpServerProperties; |
| 43 class HttpStream; | 42 class HttpStream; |
| 43 class NetLogWithSource; |
| 44 class ProxyInfo; | 44 class ProxyInfo; |
| 45 class SSLCertRequestInfo; | 45 class SSLCertRequestInfo; |
| 46 class SSLInfo; | 46 class SSLInfo; |
| 47 struct HttpRequestInfo; | 47 struct HttpRequestInfo; |
| 48 struct SSLConfig; | 48 struct SSLConfig; |
| 49 | 49 |
| 50 // The HttpStreamRequest is the client's handle to the worker object which | 50 // The HttpStreamRequest is the client's handle to the worker object which |
| 51 // handles the creation of an HttpStream. While the HttpStream is being | 51 // handles the creation of an HttpStream. While the HttpStream is being |
| 52 // created, this object is the creator's handle for interacting with the | 52 // created, this object is the creator's handle for interacting with the |
| 53 // HttpStream creation process. The request is cancelled by deleting it, after | 53 // HttpStream creation process. The request is cancelled by deleting it, after |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 | 248 |
| 249 private: | 249 private: |
| 250 url::SchemeHostPort RewriteHost(const url::SchemeHostPort& server); | 250 url::SchemeHostPort RewriteHost(const url::SchemeHostPort& server); |
| 251 | 251 |
| 252 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactory); | 252 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactory); |
| 253 }; | 253 }; |
| 254 | 254 |
| 255 } // namespace net | 255 } // namespace net |
| 256 | 256 |
| 257 #endif // NET_HTTP_HTTP_STREAM_FACTORY_H_ | 257 #endif // NET_HTTP_HTTP_STREAM_FACTORY_H_ |
| OLD | NEW |