| Index: remoting/host/client_session_unittest.cc
|
| diff --git a/remoting/host/client_session_unittest.cc b/remoting/host/client_session_unittest.cc
|
| index 13207da8735db7263a86638198c5b33c719f0116..7cd21ee831213a6bc42dee1a2c25c9d2d1ff8801 100644
|
| --- a/remoting/host/client_session_unittest.cc
|
| +++ b/remoting/host/client_session_unittest.cc
|
| @@ -12,6 +12,7 @@
|
| #include "remoting/host/screen_capturer_fake.h"
|
| #include "remoting/protocol/protocol_mock_objects.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
|
| #include "third_party/webrtc/modules/desktop_capture/desktop_region.h"
|
| #include "third_party/webrtc/modules/desktop_capture/screen_capturer_mock_objects.h"
|
|
|
| @@ -50,7 +51,8 @@ ACTION_P2(InjectMouseEvent, connection, event) {
|
| }
|
|
|
| ACTION_P2(LocalMouseMoved, client_session, event) {
|
| - client_session->OnLocalMouseMoved(SkIPoint::Make(event.x(), event.y()));
|
| + client_session->OnLocalMouseMoved(
|
| + webrtc::DesktopVector(event.x(), event.y()));
|
| }
|
|
|
| } // namespace
|
|
|