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

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: fixed 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..f6ca3f93d40195c4fc1fe49220d8a4d3ba767f83 100644
--- a/remoting/proto/event.proto
+++ b/remoting/proto/event.proto
@@ -69,16 +69,16 @@ message MouseUpEvent {
// Defines a mouse event message on the event channel.
message MouseEvent {
// Mouse position information.
- optional int32 mouse_x = 1;
- optional int32 mouse_y = 2;
+ optional MouseSetPositionEvent set_position = 1;
// Mouse wheel information.
- optional int32 wheel_offset_x = 3;
- optional int32 wheel_offset_y = 4;
+ optional MouseWheelEvent wheel = 2;
- // Mouse button information.
- optional MouseButton button = 5;
- optional bool button_down = 6;
+ // Mouse down event.
+ optional MouseDownEvent down = 3;
+
+ // Mouse up event.
+ optional MouseUpEvent up = 4;
}
// Defines an event message on the event channel.

Powered by Google App Engine
This is Rietveld 408576698