| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 |
| 11 #include "base/lock.h" | |
| 12 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 13 #include "net/base/x509_certificate.h" | 12 #include "net/base/x509_certificate.h" |
| 14 #include "remoting/protocol/jingle_session.h" | 13 #include "remoting/protocol/jingle_session.h" |
| 15 #include "remoting/protocol/session_manager.h" | 14 #include "remoting/protocol/session_manager.h" |
| 16 #include "third_party/libjingle/source/talk/p2p/base/session.h" | 15 #include "third_party/libjingle/source/talk/p2p/base/session.h" |
| 17 #include "third_party/libjingle/source/talk/p2p/base/sessionclient.h" | 16 #include "third_party/libjingle/source/talk/p2p/base/sessionclient.h" |
| 18 #include "third_party/libjingle/source/talk/p2p/base/sessiondescription.h" | 17 #include "third_party/libjingle/source/talk/p2p/base/sessiondescription.h" |
| 19 | 18 |
| 20 class MessageLoop; | 19 class MessageLoop; |
| 21 | 20 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 scoped_ptr<base::RSAPrivateKey> private_key_; | 150 scoped_ptr<base::RSAPrivateKey> private_key_; |
| 152 | 151 |
| 153 DISALLOW_COPY_AND_ASSIGN(JingleSessionManager); | 152 DISALLOW_COPY_AND_ASSIGN(JingleSessionManager); |
| 154 }; | 153 }; |
| 155 | 154 |
| 156 } // namespace protocol | 155 } // namespace protocol |
| 157 | 156 |
| 158 } // namespace remoting | 157 } // namespace remoting |
| 159 | 158 |
| 160 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ | 159 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ |
| OLD | NEW |