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

Unified Diff: remoting/proto/event.proto

Issue 9646013: Add the plumbing that will carry a clipboard item from a chromoting client to a host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move clipboard events to the control channel. Created 8 years, 9 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 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 dcc2aaebea7d2dfeeb67fcca54608612886f631c..1dabf70ea9a2877302ac74bc375420e6384b5be4 100644
--- a/remoting/proto/event.proto
+++ b/remoting/proto/event.proto
@@ -48,3 +48,13 @@ message MouseEvent {
optional MouseButton button = 5;
optional bool button_down = 6;
}
+
+// Defines an event that sends clipboard data between peers.
+message ClipboardEvent {
Wez 2012/03/14 20:40:56 I thought that we had agreed on TextClipboardEvent
simonmorris 2012/03/14 21:20:21 We may be able to use this message as it stands in
+
+ // The MIME type of the data being sent.
+ required string mime_type = 1;
Sergey Ulanov 2012/03/14 20:27:07 It's usually better to mark all fields in protobuf
simonmorris 2012/03/14 21:20:21 Done.
+
+ // The data being sent.
+ required bytes data = 2;
+}

Powered by Google App Engine
This is Rietveld 408576698