| 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 #ifndef REMOTING_HOST_CHROMOTING_HOST_H_ | 5 #ifndef REMOTING_HOST_CHROMOTING_HOST_H_ |
| 6 #define REMOTING_HOST_CHROMOTING_HOST_H_ | 6 #define REMOTING_HOST_CHROMOTING_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "base/threading/thread.h" | 13 #include "base/threading/thread.h" |
| 14 #include "net/base/backoff_entry.h" | 14 #include "net/base/backoff_entry.h" |
| 15 #include "remoting/base/encoder.h" | 15 #include "remoting/codec/video_encoder.h" |
| 16 #include "remoting/host/client_session.h" | 16 #include "remoting/host/client_session.h" |
| 17 #include "remoting/host/desktop_environment.h" | 17 #include "remoting/host/desktop_environment.h" |
| 18 #include "remoting/host/host_key_pair.h" | 18 #include "remoting/host/host_key_pair.h" |
| 19 #include "remoting/host/host_status_observer.h" | 19 #include "remoting/host/host_status_observer.h" |
| 20 #include "remoting/host/mouse_move_observer.h" | 20 #include "remoting/host/mouse_move_observer.h" |
| 21 #include "remoting/host/ui_strings.h" | 21 #include "remoting/host/ui_strings.h" |
| 22 #include "remoting/protocol/authenticator.h" | 22 #include "remoting/protocol/authenticator.h" |
| 23 #include "remoting/protocol/session_manager.h" | 23 #include "remoting/protocol/session_manager.h" |
| 24 #include "remoting/protocol/connection_to_client.h" | 24 #include "remoting/protocol/connection_to_client.h" |
| 25 | 25 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 | 229 |
| 230 // The maximum duration of any session. | 230 // The maximum duration of any session. |
| 231 base::TimeDelta max_session_duration_; | 231 base::TimeDelta max_session_duration_; |
| 232 | 232 |
| 233 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 233 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
| 234 }; | 234 }; |
| 235 | 235 |
| 236 } // namespace remoting | 236 } // namespace remoting |
| 237 | 237 |
| 238 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 238 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
| OLD | NEW |