| Index: remoting/host/local_input_monitor_win.cc
|
| diff --git a/remoting/host/local_input_monitor_win.cc b/remoting/host/local_input_monitor_win.cc
|
| index 2459c0fe221235ac7963f5161f10002cf6c710fa..cd414d89b8b19ae381c5e2ebb68b329396286cd7 100644
|
| --- a/remoting/host/local_input_monitor_win.cc
|
| +++ b/remoting/host/local_input_monitor_win.cc
|
| @@ -13,7 +13,6 @@
|
| #include "base/threading/non_thread_safe.h"
|
| #include "base/win/message_window.h"
|
| #include "remoting/host/client_session_control.h"
|
| -#include "third_party/skia/include/core/SkPoint.h"
|
|
|
| namespace remoting {
|
|
|
| @@ -198,7 +197,7 @@ LRESULT LocalInputMonitorWin::Core::OnInput(HRAWINPUT input_handle) {
|
| caller_task_runner_->PostTask(
|
| FROM_HERE, base::Bind(&ClientSessionControl::OnLocalMouseMoved,
|
| client_session_control_,
|
| - SkIPoint::Make(position.x, position.y)));
|
| + webrtc::DesktopVector(position.x, position.y)));
|
| }
|
|
|
| return DefRawInputProc(&input, 1, sizeof(RAWINPUTHEADER));
|
|
|