Index: remoting/proto/event.proto |
diff --git a/remoting/proto/event.proto b/remoting/proto/event.proto |
index 2098e70861d5f8bf5891b7d6a75dd7b862d51ad8..12db9fa7070bb045b2e1c055a421f684864a6433 100644 |
--- a/remoting/proto/event.proto |
+++ b/remoting/proto/event.proto |
@@ -11,7 +11,6 @@ option optimize_for = LITE_RUNTIME; |
package remoting.protocol; |
// Defines a keyboard event. |
-// NEXT ID: 3 |
message KeyEvent { |
// The POSIX key code. |
required int32 keycode = 1; |
@@ -34,6 +33,9 @@ message MouseEvent { |
optional int32 y = 2; |
// Mouse wheel information. |
+ // These values encode the number of wheel 'ticks' (or 'clicks'). |
Wez
2011/10/13 00:38:01
nit: Consider explaining that "ticks" is the most
garykac
2011/10/13 21:18:53
Done.
|
+ // TODO(garykac): Add support for high-resolution devices that give |
+ // 'delta's that are accumulated to make a single tick. |
Wez
2011/10/13 00:38:01
nit: Remove the TODO, and instead just say "We may
garykac
2011/10/13 21:18:53
Done.
|
optional int32 wheel_offset_x = 3; |
optional int32 wheel_offset_y = 4; |