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_SESSION_MANAGER_H_ | 5 #ifndef REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ |
6 #define REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ | 6 #define REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 scoped_ptr<cricket::PortAllocator> port_allocator_; | 104 scoped_ptr<cricket::PortAllocator> port_allocator_; |
105 cricket::HttpPortAllocator* http_port_allocator_; | 105 cricket::HttpPortAllocator* http_port_allocator_; |
106 scoped_ptr<cricket::SessionManager> cricket_session_manager_; | 106 scoped_ptr<cricket::SessionManager> cricket_session_manager_; |
107 scoped_ptr<JingleInfoRequest> jingle_info_request_; | 107 scoped_ptr<JingleInfoRequest> jingle_info_request_; |
108 scoped_ptr<JingleSignalingConnector> jingle_signaling_connector_; | 108 scoped_ptr<JingleSignalingConnector> jingle_signaling_connector_; |
109 | 109 |
110 bool closed_; | 110 bool closed_; |
111 | 111 |
112 std::list<JingleSession*> sessions_; | 112 std::list<JingleSession*> sessions_; |
113 | 113 |
114 ScopedRunnableMethodFactory<JingleSessionManager> task_factory_; | |
115 | |
116 DISALLOW_COPY_AND_ASSIGN(JingleSessionManager); | 114 DISALLOW_COPY_AND_ASSIGN(JingleSessionManager); |
117 }; | 115 }; |
118 | 116 |
119 } // namespace protocol | 117 } // namespace protocol |
120 } // namespace remoting | 118 } // namespace remoting |
121 | 119 |
122 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ | 120 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ |
OLD | NEW |