| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_ | 5 #ifndef REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_ |
| 6 #define REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_ | 6 #define REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 9 #include "net/base/completion_callback.h" | 11 #include "net/base/completion_callback.h" |
| 10 #include "remoting/protocol/channel_authenticator.h" | 12 #include "remoting/protocol/channel_authenticator.h" |
| 11 #include "remoting/protocol/jingle_channel_connector.h" | 13 #include "remoting/protocol/jingle_channel_connector.h" |
| 12 #include "remoting/protocol/session.h" | 14 #include "remoting/protocol/session.h" |
| 13 | 15 |
| 14 namespace cricket { | 16 namespace cricket { |
| 15 class TransportChannel; | 17 class TransportChannel; |
| 16 } // namespace cricket | 18 } // namespace cricket |
| 17 | 19 |
| 18 namespace jingle_glue { | |
| 19 class TransportChannelSocketAdapter; | |
| 20 } // namespace jingle_glue | |
| 21 | |
| 22 namespace net { | 20 namespace net { |
| 23 class CertVerifier; | 21 class CertVerifier; |
| 24 class StreamSocket; | 22 class StreamSocket; |
| 25 class SSLClientSocket; | 23 class SSLClientSocket; |
| 26 class SSLServerSocket; | 24 class SSLServerSocket; |
| 27 } // namespace net | 25 } // namespace net |
| 28 | 26 |
| 29 namespace remoting { | 27 namespace remoting { |
| 30 namespace protocol { | 28 namespace protocol { |
| 31 | 29 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 net::OldCompletionCallbackImpl<JingleStreamConnector> tcp_connect_callback_; | 89 net::OldCompletionCallbackImpl<JingleStreamConnector> tcp_connect_callback_; |
| 92 net::OldCompletionCallbackImpl<JingleStreamConnector> ssl_connect_callback_; | 90 net::OldCompletionCallbackImpl<JingleStreamConnector> ssl_connect_callback_; |
| 93 | 91 |
| 94 DISALLOW_COPY_AND_ASSIGN(JingleStreamConnector); | 92 DISALLOW_COPY_AND_ASSIGN(JingleStreamConnector); |
| 95 }; | 93 }; |
| 96 | 94 |
| 97 } // namespace protocol | 95 } // namespace protocol |
| 98 } // namespace remoting | 96 } // namespace remoting |
| 99 | 97 |
| 100 #endif // REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_ | 98 #endif // REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_ |
| OLD | NEW |