| 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_CHROMOTING_HOST_H_ | 5 #ifndef REMOTING_CHROMOTING_HOST_H_ |
| 6 #define REMOTING_CHROMOTING_HOST_H_ | 6 #define REMOTING_CHROMOTING_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/thread.h" | 10 #include "base/thread.h" |
| 11 #include "remoting/base/encoder.h" |
| 12 #include "remoting/host/capturer.h" |
| 11 #include "remoting/host/client_connection.h" | 13 #include "remoting/host/client_connection.h" |
| 14 #include "remoting/host/event_executor.h" |
| 12 #include "remoting/host/heartbeat_sender.h" | 15 #include "remoting/host/heartbeat_sender.h" |
| 13 #include "remoting/jingle_glue/jingle_client.h" | 16 #include "remoting/jingle_glue/jingle_client.h" |
| 14 #include "remoting/jingle_glue/jingle_thread.h" | 17 #include "remoting/jingle_glue/jingle_thread.h" |
| 15 | 18 |
| 16 class Task; | 19 class Task; |
| 17 | 20 |
| 18 namespace remoting { | 21 namespace remoting { |
| 19 | 22 |
| 20 class Capturer; | 23 class Capturer; |
| 21 class ChromotingHostContext; | 24 class ChromotingHostContext; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 151 |
| 149 // Lock is to lock the access to |state_|. | 152 // Lock is to lock the access to |state_|. |
| 150 Lock lock_; | 153 Lock lock_; |
| 151 | 154 |
| 152 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 155 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
| 153 }; | 156 }; |
| 154 | 157 |
| 155 } // namespace remoting | 158 } // namespace remoting |
| 156 | 159 |
| 157 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 160 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
| OLD | NEW |