| Index: trunk/src/remoting/host/mouse_clamping_filter.cc
|
| ===================================================================
|
| --- trunk/src/remoting/host/mouse_clamping_filter.cc (revision 224204)
|
| +++ trunk/src/remoting/host/mouse_clamping_filter.cc (working copy)
|
| @@ -24,9 +24,8 @@
|
| // Configure the MouseInputFilter to clamp to the video dimensions.
|
| if (video_packet->format().has_screen_width() &&
|
| video_packet->format().has_screen_height()) {
|
| - webrtc::DesktopSize screen_size =
|
| - webrtc::DesktopSize(video_packet->format().screen_width(),
|
| - video_packet->format().screen_height());
|
| + SkISize screen_size = SkISize::Make(video_packet->format().screen_width(),
|
| + video_packet->format().screen_height());
|
| input_filter_.set_input_size(screen_size);
|
| input_filter_.set_output_size(screen_size);
|
| }
|
|
|