/external/chromium_org/remoting/host/ |
input_injector_mac.cc | 87 SkIPoint mouse_pos_; member in class:remoting::__anon12154::InputInjectorMac::Core 191 mouse_pos_ = SkIPoint::Make(event.x(), event.y()); 203 mouse_pos_ += SkIPoint::Make(desktop_config.pixel_bounds.left(), 207 mouse_pos_ = SkIPoint::Make( 209 std::min(desktop_config.pixel_bounds.right(), mouse_pos_.x())), 211 std::min(desktop_config.pixel_bounds.bottom(), mouse_pos_.y()))); 214 mouse_pos_ = SkIPoint::Make( 215 SkScalarRound(mouse_pos_.x() / desktop_config.dip_to_pixel_scale), 216 SkScalarRound(mouse_pos_.y() / desktop_config.dip_to_pixel_scale)); 218 VLOG(3) << "Moving mouse to " << mouse_pos_.x() << "," << mouse_pos_.y() [all...] |
/external/chromium_org/remoting/protocol/ |
input_event_tracker.cc | 15 mouse_pos_(SkIPoint::Make(0, 0)), 47 mouse.set_x(mouse_pos_.x()); 48 mouse.set_y(mouse_pos_.y()); 77 mouse_pos_ = SkIPoint::Make(event.x(), event.y());
|
input_event_tracker.h | 45 SkIPoint mouse_pos_; member in class:remoting::protocol::InputEventTracker
|