Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: remoting/protocol/jingle_stream_connector.h

Issue 8824006: Migrate net/socket/socket.h, net/socket/stream_socket.h to base::Bind(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 JingleSession* session_; 56 JingleSession* session_;
57 std::string name_; 57 std::string name_;
58 Session::StreamChannelCallback callback_; 58 Session::StreamChannelCallback callback_;
59 59
60 cricket::TransportChannel* raw_channel_; 60 cricket::TransportChannel* raw_channel_;
61 scoped_ptr<net::StreamSocket> tcp_socket_; 61 scoped_ptr<net::StreamSocket> tcp_socket_;
62 scoped_ptr<net::SSLSocket> socket_; 62 scoped_ptr<net::SSLSocket> socket_;
63 63
64 scoped_ptr<ChannelAuthenticator> authenticator_; 64 scoped_ptr<ChannelAuthenticator> authenticator_;
65 65
66 // Callback called by the TCP and SSL layers.
67 net::OldCompletionCallbackImpl<JingleStreamConnector> tcp_connect_callback_;
68
69 DISALLOW_COPY_AND_ASSIGN(JingleStreamConnector); 66 DISALLOW_COPY_AND_ASSIGN(JingleStreamConnector);
70 }; 67 };
71 68
72 } // namespace protocol 69 } // namespace protocol
73 } // namespace remoting 70 } // namespace remoting
74 71
75 #endif // REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_ 72 #endif // REMOTING_PROTOCOL_JINGLE_STREAM_CONNECTOR_H_
OLDNEW
« no previous file with comments | « remoting/protocol/jingle_session_unittest.cc ('k') | remoting/protocol/jingle_stream_connector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698