Remove redundant deinitialization code from HttpCache::Transaction.
[chromium-blink-merge.git] / remoting / proto / event.proto
blob8f28f0752959142102e20777d19416dfb5e62807
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Protocol for event messages.
7 syntax = "proto2";
9 option optimize_for = LITE_RUNTIME;
11 package remoting.protocol;
13 // Defines a keyboard event.
14 message KeyEvent {
16   // The keyboard (Caps/Num) lock states.
17   enum LockStates {
18     LOCK_STATES_CAPSLOCK = 1;
19     LOCK_STATES_NUMLOCK = 2;
20   }
22   // The Windows Virtual Key code.
23   //optional int32 keycode = 1;
24   optional bool pressed = 2;
26   // The USB key code.
27   // The upper 16-bits are the USB Page (0x07 for key events).
28   // The lower 16-bits are the USB Usage ID (which identifies the actual key).
29   optional uint32 usb_keycode = 3;
31   // The keyboard lock states.
32   optional uint32 lock_states = 4 [default = 0];
35 // Defines a mouse event message on the event channel. 
36 message MouseEvent {
38   enum MouseButton {
39     BUTTON_UNDEFINED = 0;
40     BUTTON_LEFT = 1;
41     BUTTON_MIDDLE = 2;
42     BUTTON_RIGHT = 3;
43     BUTTON_MAX = 4;
44   }
46   // Mouse position information.
47   optional int32 x = 1;
48   optional int32 y = 2;
50   // Mouse button event.
51   optional MouseButton button = 5;
52   optional bool button_down = 6;
54   // Mouse wheel information.
55   // These values encode the number of pixels and 'ticks' of movement that
56   // would result from the wheel event on the client system.
57   optional float wheel_delta_x = 7;
58   optional float wheel_delta_y = 8;
59   optional float wheel_ticks_x = 9;
60   optional float wheel_ticks_y = 10;
63 // Defines an event that sends clipboard data between peers.
64 message ClipboardEvent {
66   // The MIME type of the data being sent.
67   optional string mime_type = 1;
69   // The data being sent.
70   optional bytes data = 2;