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

Unified Diff: blimp/common/proto/control.proto

Issue 1450423002: Add glue between the client and engine for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_ipc2
Patch Set: Fix build break Created 5 years, 1 month 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
« no previous file with comments | « blimp/common/proto/compositor.proto ('k') | blimp/common/proto/input.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/proto/control.proto
diff --git a/blimp/common/proto/control.proto b/blimp/common/proto/control.proto
index bcb9aaab7ff60f895b75a60ae9544c8d81517bdc..1a909b6da4177f62114705fccfd738052ca913dd 100644
--- a/blimp/common/proto/control.proto
+++ b/blimp/common/proto/control.proto
@@ -8,6 +8,10 @@ syntax = "proto2";
option optimize_for = LITE_RUNTIME;
+import "size.proto";
+
+package blimp;
+
message ControlMessage {
enum Type {
UNKNOWN = 0;
@@ -15,6 +19,14 @@ message ControlMessage {
// Client <=> Server types.
CREATE_TAB = 1;
CLOSE_TAB = 2;
+
+ // Client => Server types.
+ SIZE = 3;
}
+
optional Type type = 1;
+
+ // Feature-specific messages follow.
+ // Only one of these fields may be set per ControlMessage.
+ optional SizeMessage resize = 1000;
}
« no previous file with comments | « blimp/common/proto/compositor.proto ('k') | blimp/common/proto/input.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698