| 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_CHROMOTING_HOST_H_ | 5 #ifndef REMOTING_HOST_CHROMOTING_HOST_H_ |
| 6 #define REMOTING_CHROMOTING_HOST_H_ | 6 #define REMOTING_HOST_CHROMOTING_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> |
| 9 | 10 |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
| 12 #include "remoting/base/encoder.h" | 13 #include "remoting/base/encoder.h" |
| 13 #include "remoting/host/access_verifier.h" | 14 #include "remoting/host/access_verifier.h" |
| 14 #include "remoting/host/capturer.h" | 15 #include "remoting/host/capturer.h" |
| 15 #include "remoting/host/client_session.h" | 16 #include "remoting/host/client_session.h" |
| 16 #include "remoting/host/desktop_environment.h" | 17 #include "remoting/host/desktop_environment.h" |
| 17 #include "remoting/host/host_status_observer.h" | 18 #include "remoting/host/host_status_observer.h" |
| 18 #include "remoting/host/ui_strings.h" | 19 #include "remoting/host/ui_strings.h" |
| 19 #include "remoting/jingle_glue/jingle_thread.h" | 20 #include "remoting/jingle_glue/jingle_thread.h" |
| 20 #include "remoting/jingle_glue/signal_strategy.h" | 21 #include "remoting/jingle_glue/signal_strategy.h" |
| 21 #include "remoting/protocol/session_manager.h" | 22 #include "remoting/protocol/session_manager.h" |
| 22 #include "remoting/protocol/connection_to_client.h" | 23 #include "remoting/protocol/connection_to_client.h" |
| 23 | 24 |
| 24 class Task; | |
| 25 | |
| 26 namespace remoting { | 25 namespace remoting { |
| 27 | 26 |
| 28 namespace protocol { | 27 namespace protocol { |
| 29 class HostStub; | |
| 30 class InputStub; | 28 class InputStub; |
| 31 class SessionConfig; | 29 class SessionConfig; |
| 32 class CandidateSessionConfig; | 30 class CandidateSessionConfig; |
| 33 } // namespace protocol | 31 } // namespace protocol |
| 34 | 32 |
| 35 class Capturer; | 33 class Capturer; |
| 36 class ChromotingHostContext; | 34 class ChromotingHostContext; |
| 37 class DesktopEnvironment; | 35 class DesktopEnvironment; |
| 38 class Encoder; | 36 class Encoder; |
| 39 class MutableHostConfig; | 37 class MutableHostConfig; |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 bool is_it2me_; | 226 bool is_it2me_; |
| 229 std::string access_code_; | 227 std::string access_code_; |
| 230 UiStrings ui_strings_; | 228 UiStrings ui_strings_; |
| 231 | 229 |
| 232 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 230 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
| 233 }; | 231 }; |
| 234 | 232 |
| 235 } // namespace remoting | 233 } // namespace remoting |
| 236 | 234 |
| 237 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 235 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
| OLD | NEW |