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 REMOTING_PROTOCOL_JINGLE_SESSION_H_ | 5 #ifndef REMOTING_PROTOCOL_JINGLE_SESSION_H_ |
6 #define REMOTING_PROTOCOL_JINGLE_SESSION_H_ | 6 #define REMOTING_PROTOCOL_JINGLE_SESSION_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 // Pending transport-info requests. | 169 // Pending transport-info requests. |
170 std::list<IqRequest*> transport_info_requests_; | 170 std::list<IqRequest*> transport_info_requests_; |
171 | 171 |
172 ChannelsMap channels_; | 172 ChannelsMap channels_; |
173 scoped_ptr<PseudoTcpChannelFactory> pseudotcp_channel_factory_; | 173 scoped_ptr<PseudoTcpChannelFactory> pseudotcp_channel_factory_; |
174 scoped_ptr<SecureChannelFactory> secure_channel_factory_; | 174 scoped_ptr<SecureChannelFactory> secure_channel_factory_; |
175 scoped_ptr<ChannelMultiplexer> channel_multiplexer_; | 175 scoped_ptr<ChannelMultiplexer> channel_multiplexer_; |
176 scoped_ptr<QuicChannelFactory> quic_channel_factory_; | 176 scoped_ptr<QuicChannelFactory> quic_channel_factory_; |
177 | 177 |
178 scoped_ptr<JingleMessage> pending_transport_info_message_; | 178 scoped_ptr<JingleMessage> pending_transport_info_message_; |
179 base::OneShotTimer<JingleSession> transport_info_timer_; | 179 base::OneShotTimer transport_info_timer_; |
180 | 180 |
181 // Pending remote transport info received before the local channels were | 181 // Pending remote transport info received before the local channels were |
182 // created. | 182 // created. |
183 std::list<JingleMessage::IceCredentials> pending_remote_ice_credentials_; | 183 std::list<JingleMessage::IceCredentials> pending_remote_ice_credentials_; |
184 std::list<JingleMessage::NamedCandidate> pending_remote_candidates_; | 184 std::list<JingleMessage::NamedCandidate> pending_remote_candidates_; |
185 | 185 |
186 base::WeakPtrFactory<JingleSession> weak_factory_; | 186 base::WeakPtrFactory<JingleSession> weak_factory_; |
187 | 187 |
188 DISALLOW_COPY_AND_ASSIGN(JingleSession); | 188 DISALLOW_COPY_AND_ASSIGN(JingleSession); |
189 }; | 189 }; |
190 | 190 |
191 } // namespace protocol | 191 } // namespace protocol |
192 } // namespace remoting | 192 } // namespace remoting |
193 | 193 |
194 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_H_ | 194 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_H_ |
OLD | NEW |