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

Unified Diff: remoting/proto/event.proto

Issue 4726003: Implement InputStub in the host side for chromoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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/proto/event.proto
diff --git a/remoting/proto/event.proto b/remoting/proto/event.proto
index 1f14c9dc43437936a218df04bae9754aaa26a2cf..fcde31112dd11a3ba23f2b0493151e848e93e15b 100644
--- a/remoting/proto/event.proto
+++ b/remoting/proto/event.proto
@@ -71,14 +71,16 @@ message MouseEvent {
// Mouse position information.
optional int32 mouse_x = 1;
optional int32 mouse_y = 2;
+ optional int32 mouse_width = 3;
Sergey Ulanov 2010/11/10 20:14:21 What is mouse width/height?
Alpha Left Google 2010/11/12 20:08:01 This is removed in the latest patch.
+ optional int32 mouse_height = 4;
// Mouse wheel information.
- optional int32 wheel_offset_x = 3;
- optional int32 wheel_offset_y = 4;
+ optional int32 wheel_offset_x = 5;
+ optional int32 wheel_offset_y = 6;
// Mouse button information.
- optional MouseButton button = 5;
- optional bool button_down = 6;
+ optional MouseButton button = 7;
+ optional bool button_down = 8;
}
// Defines an event message on the event channel.

Powered by Google App Engine
This is Rietveld 408576698