| 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 // ChromotingClient is the controller for the Client implementation. | 5 // ChromotingClient is the controller for the Client implementation. |
| 6 | 6 |
| 7 #ifndef REMOTING_CLIENT_CHROMOTING_CLIENT_H_ | 7 #ifndef REMOTING_CLIENT_CHROMOTING_CLIENT_H_ |
| 8 #define REMOTING_CLIENT_CHROMOTING_CLIENT_H_ | 8 #define REMOTING_CLIENT_CHROMOTING_CLIENT_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 14 #include "remoting/protocol/client_stub.h" | 15 #include "remoting/protocol/client_stub.h" |
| 15 #include "remoting/protocol/clipboard_stub.h" | 16 #include "remoting/protocol/clipboard_stub.h" |
| 16 #include "remoting/protocol/connection_to_host.h" | 17 #include "remoting/protocol/connection_to_host.h" |
| 17 #include "remoting/protocol/input_stub.h" | 18 #include "remoting/protocol/input_stub.h" |
| 18 #include "remoting/protocol/performance_tracker.h" | 19 #include "remoting/protocol/performance_tracker.h" |
| 19 #include "remoting/protocol/session_config.h" | 20 #include "remoting/protocol/session_config.h" |
| 20 #include "remoting/protocol/video_stub.h" | 21 #include "remoting/protocol/video_stub.h" |
| 21 #include "remoting/signaling/signal_strategy.h" | 22 #include "remoting/signaling/signal_strategy.h" |
| 22 | 23 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 142 |
| 142 // Record the statistics of the connection. | 143 // Record the statistics of the connection. |
| 143 protocol::PerformanceTracker perf_tracker_; | 144 protocol::PerformanceTracker perf_tracker_; |
| 144 | 145 |
| 145 DISALLOW_COPY_AND_ASSIGN(ChromotingClient); | 146 DISALLOW_COPY_AND_ASSIGN(ChromotingClient); |
| 146 }; | 147 }; |
| 147 | 148 |
| 148 } // namespace remoting | 149 } // namespace remoting |
| 149 | 150 |
| 150 #endif // REMOTING_CLIENT_CHROMOTING_CLIENT_H_ | 151 #endif // REMOTING_CLIENT_CHROMOTING_CLIENT_H_ |
| OLD | NEW |