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. |