| 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_SOCKET_STREAM_SOCKET_STREAM_H_ | 5 #ifndef NET_SOCKET_STREAM_SOCKET_STREAM_H_ |
| 6 #define NET_SOCKET_STREAM_SOCKET_STREAM_H_ | 6 #define NET_SOCKET_STREAM_SOCKET_STREAM_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "net/base/privacy_mode.h" | 21 #include "net/base/privacy_mode.h" |
| 22 #include "net/cookies/cookie_store.h" | 22 #include "net/cookies/cookie_store.h" |
| 23 #include "net/proxy/proxy_service.h" | 23 #include "net/proxy/proxy_service.h" |
| 24 #include "net/ssl/ssl_config_service.h" | 24 #include "net/ssl/ssl_config_service.h" |
| 25 #include "net/url_request/url_request.h" | 25 #include "net/url_request/url_request.h" |
| 26 | 26 |
| 27 namespace net { | 27 namespace net { |
| 28 | 28 |
| 29 class AuthChallengeInfo; | 29 class AuthChallengeInfo; |
| 30 class CertVerifier; | 30 class CertVerifier; |
| 31 class ChannelIDService; |
| 31 class ClientSocketFactory; | 32 class ClientSocketFactory; |
| 32 class ClientSocketHandle; | 33 class ClientSocketHandle; |
| 33 class CookieOptions; | 34 class CookieOptions; |
| 34 class HostResolver; | 35 class HostResolver; |
| 35 class HttpAuthController; | 36 class HttpAuthController; |
| 36 class SSLInfo; | 37 class SSLInfo; |
| 37 class ServerBoundCertService; | |
| 38 class SingleRequestHostResolver; | 38 class SingleRequestHostResolver; |
| 39 class SocketStreamMetrics; | 39 class SocketStreamMetrics; |
| 40 class TransportSecurityState; | 40 class TransportSecurityState; |
| 41 class URLRequestContext; | 41 class URLRequestContext; |
| 42 | 42 |
| 43 // SocketStream is used to implement Web Sockets. | 43 // SocketStream is used to implement Web Sockets. |
| 44 // It provides plain full-duplex stream with proxy and SSL support. | 44 // It provides plain full-duplex stream with proxy and SSL support. |
| 45 // For proxy authentication, only basic mechanisum is supported. It will try | 45 // For proxy authentication, only basic mechanisum is supported. It will try |
| 46 // authentication identity for proxy URL first. If server requires proxy | 46 // authentication identity for proxy URL first. If server requires proxy |
| 47 // authentication, it will try authentication identity for realm that server | 47 // authentication, it will try authentication identity for realm that server |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 | 395 |
| 396 // Cookie store to use for this socket stream. | 396 // Cookie store to use for this socket stream. |
| 397 scoped_refptr<CookieStore> cookie_store_; | 397 scoped_refptr<CookieStore> cookie_store_; |
| 398 | 398 |
| 399 DISALLOW_COPY_AND_ASSIGN(SocketStream); | 399 DISALLOW_COPY_AND_ASSIGN(SocketStream); |
| 400 }; | 400 }; |
| 401 | 401 |
| 402 } // namespace net | 402 } // namespace net |
| 403 | 403 |
| 404 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_ | 404 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_ |
| OLD | NEW |