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

Side by Side Diff: remoting/proto/internal.proto

Issue 10382184: [Chromoting] Initial plumbing for cursor shape. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove extra LOGs Created 8 years, 7 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Internal message types that should not be seen outside the protocol 5 // Internal message types that should not be seen outside the protocol
6 // directory. 6 // directory.
7 7
8 syntax = "proto2"; 8 syntax = "proto2";
9 9
10 import "control.proto"; 10 import "control.proto";
11 import "event.proto"; 11 import "event.proto";
12 12
13 option optimize_for = LITE_RUNTIME; 13 option optimize_for = LITE_RUNTIME;
14 14
15 package remoting.protocol; 15 package remoting.protocol;
16 16
17 // Represents a message being sent on the control channel. 17 // Represents a message being sent on the control channel.
18 message ControlMessage { 18 message ControlMessage {
19 optional ClipboardEvent clipboard_event = 1; 19 optional ClipboardEvent clipboard_event = 1;
20 optional ClientDimensions client_dimensions = 2; 20 optional ClientDimensions client_dimensions = 2;
21 optional VideoControl video_control = 3; 21 optional VideoControl video_control = 3;
22 optional CursorShapeInfo cursor_shape = 4;
Wez 2012/05/23 00:01:57 nit: Alphabetically order these members.
garykac 2012/05/26 01:58:01 Done.
22 } 23 }
23 24
24 // Defines an event message on the event channel. 25 // Defines an event message on the event channel.
25 message EventMessage { 26 message EventMessage {
26 optional int64 sequence_number = 1; // Client timestamp for event. 27 optional int64 sequence_number = 1; // Client timestamp for event.
27 optional bool dummy = 2; // Whether this is a dummy event. 28 optional bool dummy = 2; // Whether this is a dummy event.
28 29
29 optional KeyEvent key_event = 3; 30 optional KeyEvent key_event = 3;
30 optional MouseEvent mouse_event = 4; 31 optional MouseEvent mouse_event = 4;
31 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698