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

Unified Diff: blimp/common/proto/compositor.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/common.proto ('k') | blimp/common/proto/control.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/proto/compositor.proto
diff --git a/blimp/common/proto/compositor.proto b/blimp/common/proto/compositor.proto
index bd5f826bdff89e30b627f7cfc38889ce9df6d8f9..a015c242181ef53aad1db79c455d170cc0e0a2fb 100644
--- a/blimp/common/proto/compositor.proto
+++ b/blimp/common/proto/compositor.proto
@@ -4,8 +4,6 @@
//
// Message definitions for the compositor subprotocol.
-// TODO(nyquist): Import cc proto files.
-
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
@@ -13,6 +11,11 @@ option optimize_for = LITE_RUNTIME;
package blimp;
message CompositorMessage {
- // TODO(nyquist): Include the cc proto message here.
+ // An ID that corresponds to RenderWidgetMessage.render_widget_id.
+ optional uint32 render_widget_id = 1;
+
+ // This represents a serialized CompositorMessage in
+ // cc/proto/compositor_message.proto.
+ optional bytes payload = 2;
}
« no previous file with comments | « blimp/common/proto/common.proto ('k') | blimp/common/proto/control.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698