| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_TEST_TEST_CHROMOTING_CLIENT_H_ | 5 #ifndef REMOTING_TEST_TEST_CHROMOTING_CLIENT_H_ |
| 6 #define REMOTING_TEST_TEST_CHROMOTING_CLIENT_H_ | 6 #define REMOTING_TEST_TEST_CHROMOTING_CLIENT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 14 #include "remoting/client/chromoting_client.h" | 14 #include "remoting/client/chromoting_client.h" |
| 15 #include "remoting/client/client_user_interface.h" | 15 #include "remoting/client/client_user_interface.h" |
| 16 #include "remoting/protocol/clipboard_filter.h" | 16 #include "remoting/protocol/clipboard_filter.h" |
| 17 #include "remoting/protocol/cursor_shape_stub.h" | 17 #include "remoting/protocol/cursor_shape_stub.h" |
| 18 #include "remoting/test/remote_connection_observer.h" | 18 #include "remoting/test/remote_connection_observer.h" |
| 19 | 19 |
| 20 namespace remoting { | 20 namespace remoting { |
| 21 | 21 |
| 22 class ClientContext; | 22 class ClientContext; |
| 23 class XmppSignalStrategy; | |
| 24 | 23 |
| 25 namespace protocol { | 24 namespace protocol { |
| 26 class ClipboardStub; | 25 class ClipboardStub; |
| 27 class HostStub; | 26 class HostStub; |
| 28 class InputStub; | 27 class InputStub; |
| 29 class VideoRenderer; | 28 class VideoRenderer; |
| 30 } // namespace protocol | 29 } // namespace protocol |
| 31 | 30 |
| 32 namespace test { | 31 namespace test { |
| 33 | 32 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 // SignalStrategy used for connection signaling. | 122 // SignalStrategy used for connection signaling. |
| 124 std::unique_ptr<SignalStrategy> signal_strategy_; | 123 std::unique_ptr<SignalStrategy> signal_strategy_; |
| 125 | 124 |
| 126 DISALLOW_COPY_AND_ASSIGN(TestChromotingClient); | 125 DISALLOW_COPY_AND_ASSIGN(TestChromotingClient); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 } // namespace test | 128 } // namespace test |
| 130 } // namespace remoting | 129 } // namespace remoting |
| 131 | 130 |
| 132 #endif // REMOTING_TEST_TEST_CHROMOTING_CLIENT_H_ | 131 #endif // REMOTING_TEST_TEST_CHROMOTING_CLIENT_H_ |
| OLD | NEW |