summaryrefslogtreecommitdiffstats
path: root/remoting/proto
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-16 19:53:35 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-16 19:53:35 +0000
commit6fd3d6a1648a754d8023924074612d55c187b4cf (patch)
tree102ac605e52b8cf1a4e423b5403a0302a5ee9f76 /remoting/proto
parent3e4155c723ab73c8f754a82d81f0eb247c83536f (diff)
downloadchromium_src-6fd3d6a1648a754d8023924074612d55c187b4cf.zip
chromium_src-6fd3d6a1648a754d8023924074612d55c187b4cf.tar.gz
chromium_src-6fd3d6a1648a754d8023924074612d55c187b4cf.tar.bz2
Implement input stub in the host side for chromoting
Implement InputStub for the host. BUG=None TEST=None Review URL: http://codereview.chromium.org/4726003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66314 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/proto')
-rw-r--r--remoting/proto/event.proto14
1 files changed, 7 insertions, 7 deletions
diff --git a/remoting/proto/event.proto b/remoting/proto/event.proto
index 1f14c9dc..f6ca3f9 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.