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

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: Fixed net callback, fixed output surface creation assumption 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
Index: blimp/common/proto/control.proto
diff --git a/blimp/common/proto/control.proto b/blimp/common/proto/control.proto
index f01654b28096147a8899e3d78c52dab1171bd61e..b29e702f9bdba448eb327a32e9861e45825ddfc7 100644
--- a/blimp/common/proto/control.proto
+++ b/blimp/common/proto/control.proto
@@ -8,11 +8,23 @@ syntax = "proto2";
option optimize_for = LITE_RUNTIME;
+import "resize.proto";
+
+package blimp;
+
message ControlMessage {
enum Type {
// Client <=> Server types.
CREATE_TAB = 1;
CLOSE_TAB = 2;
+
+ // Client => Server types.
+ RESIZE = 3;
}
+
optional Type type = 1;
+
+ // Feature-specific messages follow.
+ // Only one of these fields may be set per ControlMessage.
+ optional ResizeMessage resize = 1000;
}

Powered by Google App Engine
This is Rietveld 408576698