| 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 #include "remoting/test/test_chromoting_client.h" | 5 #include "remoting/test/test_chromoting_client.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 void TestChromotingClient::DeliverHostMessage( | 243 void TestChromotingClient::DeliverHostMessage( |
| 244 const protocol::ExtensionMessage& message) { | 244 const protocol::ExtensionMessage& message) { |
| 245 VLOG(1) << "TestChromotingClient::DeliverHostMessage(" | 245 VLOG(1) << "TestChromotingClient::DeliverHostMessage(" |
| 246 << "type: " << message.type() << ", " | 246 << "type: " << message.type() << ", " |
| 247 << "data: " << message.data() << ") Called"; | 247 << "data: " << message.data() << ") Called"; |
| 248 | 248 |
| 249 FOR_EACH_OBSERVER(RemoteConnectionObserver, connection_observers_, | 249 FOR_EACH_OBSERVER(RemoteConnectionObserver, connection_observers_, |
| 250 HostMessageReceived(message)); | 250 HostMessageReceived(message)); |
| 251 } | 251 } |
| 252 | 252 |
| 253 void TestChromotingClient::SetDesktopSize(const webrtc::DesktopSize& size, |
| 254 const webrtc::DesktopVector& dpi) { |
| 255 VLOG(1) << "TestChromotingClient::SetDesktopSize() Called"; |
| 256 } |
| 257 |
| 253 protocol::ClipboardStub* TestChromotingClient::GetClipboardStub() { | 258 protocol::ClipboardStub* TestChromotingClient::GetClipboardStub() { |
| 254 VLOG(1) << "TestChromotingClient::GetClipboardStub() Called"; | 259 VLOG(1) << "TestChromotingClient::GetClipboardStub() Called"; |
| 255 return this; | 260 return this; |
| 256 } | 261 } |
| 257 | 262 |
| 258 protocol::CursorShapeStub* TestChromotingClient::GetCursorShapeStub() { | 263 protocol::CursorShapeStub* TestChromotingClient::GetCursorShapeStub() { |
| 259 VLOG(1) << "TestChromotingClient::GetCursorShapeStub() Called"; | 264 VLOG(1) << "TestChromotingClient::GetCursorShapeStub() Called"; |
| 260 return this; | 265 return this; |
| 261 } | 266 } |
| 262 | 267 |
| 263 void TestChromotingClient::InjectClipboardEvent( | 268 void TestChromotingClient::InjectClipboardEvent( |
| 264 const protocol::ClipboardEvent& event) { | 269 const protocol::ClipboardEvent& event) { |
| 265 VLOG(1) << "TestChromotingClient::InjectClipboardEvent() Called"; | 270 VLOG(1) << "TestChromotingClient::InjectClipboardEvent() Called"; |
| 266 } | 271 } |
| 267 | 272 |
| 268 void TestChromotingClient::SetCursorShape( | 273 void TestChromotingClient::SetCursorShape( |
| 269 const protocol::CursorShapeInfo& cursor_shape) { | 274 const protocol::CursorShapeInfo& cursor_shape) { |
| 270 VLOG(1) << "TestChromotingClient::SetCursorShape() Called"; | 275 VLOG(1) << "TestChromotingClient::SetCursorShape() Called"; |
| 271 } | 276 } |
| 272 | 277 |
| 273 } // namespace test | 278 } // namespace test |
| 274 } // namespace remoting | 279 } // namespace remoting |
| OLD | NEW |