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 // The purpose of SessionManager is to facilitate creation of chromotocol | 5 // The purpose of SessionManager is to facilitate creation of chromotocol |
6 // sessions. Both host and client use it to establish chromotocol | 6 // sessions. Both host and client use it to establish chromotocol |
7 // sessions. JingleChromotocolServer implements this inteface using | 7 // sessions. JingleChromotocolServer implements this inteface using |
8 // libjingle. | 8 // libjingle. |
9 // | 9 // |
10 // OUTGOING SESSIONS | 10 // OUTGOING SESSIONS |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 #ifndef REMOTING_PROTOCOL_SESSION_MANAGER_H_ | 53 #ifndef REMOTING_PROTOCOL_SESSION_MANAGER_H_ |
54 #define REMOTING_PROTOCOL_SESSION_MANAGER_H_ | 54 #define REMOTING_PROTOCOL_SESSION_MANAGER_H_ |
55 | 55 |
56 #include <string> | 56 #include <string> |
57 | 57 |
58 #include "base/callback.h" | 58 #include "base/callback.h" |
59 #include "base/memory/ref_counted.h" | 59 #include "base/memory/ref_counted.h" |
60 #include "base/threading/non_thread_safe.h" | 60 #include "base/threading/non_thread_safe.h" |
61 #include "remoting/protocol/session.h" | 61 #include "remoting/protocol/session.h" |
62 #include "remoting/protocol/transport_config.h" | |
63 | 62 |
64 namespace remoting { | 63 namespace remoting { |
65 | 64 |
66 class SignalStrategy; | 65 class SignalStrategy; |
67 | 66 |
68 namespace protocol { | 67 namespace protocol { |
69 | 68 |
70 class Authenticator; | 69 class Authenticator; |
71 class AuthenticatorFactory; | 70 class AuthenticatorFactory; |
72 | 71 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 scoped_ptr<AuthenticatorFactory> authenticator_factory) = 0; | 149 scoped_ptr<AuthenticatorFactory> authenticator_factory) = 0; |
151 | 150 |
152 private: | 151 private: |
153 DISALLOW_COPY_AND_ASSIGN(SessionManager); | 152 DISALLOW_COPY_AND_ASSIGN(SessionManager); |
154 }; | 153 }; |
155 | 154 |
156 } // namespace protocol | 155 } // namespace protocol |
157 } // namespace remoting | 156 } // namespace remoting |
158 | 157 |
159 #endif // REMOTING_PROTOCOL_SESSION_MANAGER_H_ | 158 #endif // REMOTING_PROTOCOL_SESSION_MANAGER_H_ |
OLD | NEW |