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

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

Issue 13932020: Set the initial resolution of an RDP session to the client screen resolution if it is available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Clang Created 7 years, 8 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
« no previous file with comments | « remoting/host/ipc_desktop_environment_unittest.cc ('k') | remoting/proto/internal.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Protocol for control messages. 5 // Protocol for control messages.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
(...skipping 29 matching lines...) Expand all
40 optional int32 width = 1; 40 optional int32 width = 1;
41 optional int32 height = 2; 41 optional int32 height = 2;
42 42
43 // X,Y coordinates (relative to upper-left corner) of the cursor hotspot. 43 // X,Y coordinates (relative to upper-left corner) of the cursor hotspot.
44 optional int32 hotspot_x = 3; 44 optional int32 hotspot_x = 3;
45 optional int32 hotspot_y = 4; 45 optional int32 hotspot_y = 4;
46 46
47 // Cursor pixmap data in 32-bit BGRA format. 47 // Cursor pixmap data in 32-bit BGRA format.
48 optional bytes data = 5; 48 optional bytes data = 5;
49 } 49 }
50
51 message Capabilities {
52 // List of capabilities supported by the sender (case sensitive, capabilities
53 // are separated by spaces).
54 optional string capabilities = 1;
55 }
OLDNEW
« no previous file with comments | « remoting/host/ipc_desktop_environment_unittest.cc ('k') | remoting/proto/internal.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698