| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_HOST_IT2ME_IT2ME_HOST_H_ | 5 #ifndef REMOTING_HOST_IT2ME_IT2ME_HOST_H_ |
| 6 #define REMOTING_HOST_IT2ME_IT2ME_HOST_H_ | 6 #define REMOTING_HOST_IT2ME_IT2ME_HOST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 namespace policy { | 24 namespace policy { |
| 25 class PolicyService; | 25 class PolicyService; |
| 26 } // namespace policy | 26 } // namespace policy |
| 27 | 27 |
| 28 namespace remoting { | 28 namespace remoting { |
| 29 | 29 |
| 30 class ChromotingHost; | 30 class ChromotingHost; |
| 31 class ChromotingHostContext; | 31 class ChromotingHostContext; |
| 32 class DesktopEnvironmentFactory; | 32 class DesktopEnvironmentFactory; |
| 33 class HostEventLogger; | 33 class HostEventLogger; |
| 34 class HostNPScriptObject; | |
| 35 class HostStatusLogger; | 34 class HostStatusLogger; |
| 36 class PolicyWatcher; | 35 class PolicyWatcher; |
| 37 class RegisterSupportHostRequest; | 36 class RegisterSupportHostRequest; |
| 38 class RsaKeyPair; | 37 class RsaKeyPair; |
| 39 | 38 |
| 40 // These state values are duplicated in host_session.js. Remember to update | 39 // These state values are duplicated in host_session.js. Remember to update |
| 41 // both copies when making changes. | 40 // both copies when making changes. |
| 42 enum It2MeHostState { | 41 enum It2MeHostState { |
| 43 kDisconnected, | 42 kDisconnected, |
| 44 kStarting, | 43 kStarting, |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 const std::string& username, | 220 const std::string& username, |
| 222 const std::string& directory_bot_jid); | 221 const std::string& directory_bot_jid); |
| 223 | 222 |
| 224 private: | 223 private: |
| 225 DISALLOW_COPY_AND_ASSIGN(It2MeHostFactory); | 224 DISALLOW_COPY_AND_ASSIGN(It2MeHostFactory); |
| 226 }; | 225 }; |
| 227 | 226 |
| 228 } // namespace remoting | 227 } // namespace remoting |
| 229 | 228 |
| 230 #endif // REMOTING_HOST_IT2ME_IT2ME_HOST_H_ | 229 #endif // REMOTING_HOST_IT2ME_IT2ME_HOST_H_ |
| OLD | NEW |