| 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 #include "remoting/host/ipc_input_injector.h" | 5 #include "remoting/host/ipc_input_injector.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "remoting/host/desktop_session_proxy.h" | 9 #include "remoting/host/desktop_session_proxy.h" |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 void IpcInputInjector::InjectMouseEvent(const protocol::MouseEvent& event) { | 34 void IpcInputInjector::InjectMouseEvent(const protocol::MouseEvent& event) { |
| 35 desktop_session_proxy_->InjectMouseEvent(event); | 35 desktop_session_proxy_->InjectMouseEvent(event); |
| 36 } | 36 } |
| 37 | 37 |
| 38 void IpcInputInjector::InjectTouchEvent(const protocol::TouchEvent& event) { | 38 void IpcInputInjector::InjectTouchEvent(const protocol::TouchEvent& event) { |
| 39 desktop_session_proxy_->InjectTouchEvent(event); | 39 desktop_session_proxy_->InjectTouchEvent(event); |
| 40 } | 40 } |
| 41 | 41 |
| 42 void IpcInputInjector::Start( | 42 void IpcInputInjector::Start( |
| 43 scoped_ptr<protocol::ClipboardStub> client_clipboard) { | 43 std::unique_ptr<protocol::ClipboardStub> client_clipboard) { |
| 44 desktop_session_proxy_->StartInputInjector(std::move(client_clipboard)); | 44 desktop_session_proxy_->StartInputInjector(std::move(client_clipboard)); |
| 45 } | 45 } |
| 46 | 46 |
| 47 } // namespace remoting | 47 } // namespace remoting |
| OLD | NEW |