| Index: remoting/host/event_executor_win.cc
|
| diff --git a/remoting/host/event_executor_win.cc b/remoting/host/event_executor_win.cc
|
| index c4283e4125e3277ca89769dabf92bcf1ce30e472..197d202f80e3cc09c2da9646f97311674a22330d 100644
|
| --- a/remoting/host/event_executor_win.cc
|
| +++ b/remoting/host/event_executor_win.cc
|
| @@ -110,7 +110,7 @@ void EventExecutorWin::HandleMouse(const MouseEvent& event) {
|
| INPUT input;
|
| input.type = INPUT_MOUSE;
|
| input.mi.time = 0;
|
| - gfx::Size screen_size = capturer_->size_most_recent();
|
| + SkISize screen_size = capturer_->size_most_recent();
|
| if ((screen_size.width() > 0) && (screen_size.height() > 0)) {
|
| input.mi.dx = static_cast<int>((x * 65535) / screen_size.width());
|
| input.mi.dy = static_cast<int>((y * 65535) / screen_size.height());
|
|
|