Index: blimp/common/proto/compositor.proto |
diff --git a/blimp/common/proto/compositor.proto b/blimp/common/proto/compositor.proto |
index bd5f826bdff89e30b627f7cfc38889ce9df6d8f9..5254f7aaec49c0da870dd71aaddc7b6ca1f7055c 100644 |
--- a/blimp/common/proto/compositor.proto |
+++ b/blimp/common/proto/compositor.proto |
@@ -13,6 +13,11 @@ option optimize_for = LITE_RUNTIME; |
package blimp; |
message CompositorMessage { |
- // TODO(nyquist): Include the cc proto message here. |
+ // An ID that corresponds to RenderWidgetMessage. |
Kevin M
2015/11/24 18:39:59
Corresponds to WGM.render_widget_id
David Trainor- moved to gerrit
2015/11/25 17:56:42
Done.
|
+ optional uint32 render_widget_id = 1; |
+ |
+ // This represents a serialized CompositorMessage in |
Kevin M
2015/11/24 18:39:59
What's the reasoning behind serializing the messag
David Trainor- moved to gerrit
2015/11/25 17:56:42
That would be ideal. A few issues currently (whic
|
+ // cc/proto/compositor_message.proto. |
+ optional bytes payload = 2; |
} |