Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Unified Diff: remoting/protocol/input_event_tracker.cc

Issue 799233004: Add touch events to the protocol, the stub layer, and to the client plugin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mac builds Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/protocol/input_event_tracker.cc
diff --git a/remoting/protocol/input_event_tracker.cc b/remoting/protocol/input_event_tracker.cc
index 446a4b623898424f8e94afa7ead2a3e2d66175e7..33922db00ea73df045e05ff5997d587a4d4795f7 100644
--- a/remoting/protocol/input_event_tracker.cc
+++ b/remoting/protocol/input_event_tracker.cc
@@ -92,5 +92,9 @@ void InputEventTracker::InjectMouseEvent(const MouseEvent& event) {
input_stub_->InjectMouseEvent(event);
}
+void InputEventTracker::InjectTouchEvent(const TouchEvent& event) {
+ input_stub_->InjectTouchEvent(event);
Wez 2015/01/21 03:08:37 Don't you need to track the touch points so you ca
Rintaro Kuroiwa 2015/01/28 01:12:30 Oops. I didn't read the header file carefully. Don
+}
+
} // namespace protocol
} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698