| 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 JINGLE_GLUE_XMPP_CLIENT_SOCKET_FACTORY_H_ | 5 #ifndef JINGLE_GLUE_XMPP_CLIENT_SOCKET_FACTORY_H_ |
| 6 #define JINGLE_GLUE_XMPP_CLIENT_SOCKET_FACTORY_H_ | 6 #define JINGLE_GLUE_XMPP_CLIENT_SOCKET_FACTORY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "jingle/glue/resolving_client_socket_factory.h" | 12 #include "jingle/glue/resolving_client_socket_factory.h" |
| 13 #include "net/base/ssl_config_service.h" | 13 #include "net/ssl/ssl_config_service.h" |
| 14 | 14 |
| 15 namespace net { | 15 namespace net { |
| 16 class ClientSocketFactory; | 16 class ClientSocketFactory; |
| 17 class ClientSocketHandle; | 17 class ClientSocketHandle; |
| 18 class HostPortPair; | 18 class HostPortPair; |
| 19 class SSLClientSocket; | 19 class SSLClientSocket; |
| 20 class StreamSocket; | 20 class StreamSocket; |
| 21 class URLRequestContextGetter; | 21 class URLRequestContextGetter; |
| 22 } // namespace net | 22 } // namespace net |
| 23 | 23 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 47 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; | 47 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; |
| 48 const net::SSLConfig ssl_config_; | 48 const net::SSLConfig ssl_config_; |
| 49 const bool use_fake_ssl_client_socket_; | 49 const bool use_fake_ssl_client_socket_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(XmppClientSocketFactory); | 51 DISALLOW_COPY_AND_ASSIGN(XmppClientSocketFactory); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace jingle_glue | 54 } // namespace jingle_glue |
| 55 | 55 |
| 56 #endif // JINGLE_GLUE_XMPP_CLIENT_SOCKET_FACTORY_H_ | 56 #endif // JINGLE_GLUE_XMPP_CLIENT_SOCKET_FACTORY_H_ |
| OLD | NEW |