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

Unified Diff: remoting/host/event_executor_win.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 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
« no previous file with comments | « remoting/host/encoder_vp8_unittest.cc ('k') | remoting/host/mock_objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/event_executor_win.cc
diff --git a/remoting/host/event_executor_win.cc b/remoting/host/event_executor_win.cc
index cc7f8f815bf3f7d636ff9e37df78ab04de1fa6e8..de82a5a44e41919175e40e965de0f4797bcc5908 100644
--- a/remoting/host/event_executor_win.cc
+++ b/remoting/host/event_executor_win.cc
@@ -355,7 +355,7 @@ EventExecutorWin::~EventExecutorWin() {
void EventExecutorWin::HandleInputEvents(ClientMessageList* messages) {
for (size_t i = 0; i < messages->size(); ++i) {
- chromotocol_pb::ClientMessage* msg = (*messages)[i];
+ ClientMessage* msg = (*messages)[i];
if (msg->has_mouse_set_position_event()) {
mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE,
static_cast<int>((msg->mouse_set_position_event().x() * 65535)),
@@ -369,20 +369,20 @@ void EventExecutorWin::HandleInputEvents(ClientMessageList* messages) {
// TODO(hclam): Handle wheel events.
} else if (msg->has_mouse_down_event()) {
if (msg->mouse_down_event().button() ==
- chromotocol_pb::MouseDownEvent::LEFT) {
+ MouseDownEvent::LEFT) {
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
} else if (msg->mouse_down_event().button() ==
- chromotocol_pb::MouseDownEvent::RIGHT) {
+ MouseDownEvent::RIGHT) {
mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0);
} else {
// TODO(hclam): Handle other buttons.
}
} else if (msg->has_mouse_up_event()) {
if (msg->mouse_up_event().button() ==
- chromotocol_pb::MouseUpEvent::LEFT) {
+ MouseUpEvent::LEFT) {
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
} else if (msg->mouse_up_event().button() ==
- chromotocol_pb::MouseUpEvent::RIGHT) {
+ MouseUpEvent::RIGHT) {
mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0);
} else {
// TODO(hclam): Handle other buttons.
« no previous file with comments | « remoting/host/encoder_vp8_unittest.cc ('k') | remoting/host/mock_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698