Index: blimp/common/proto/render_widget.proto |
diff --git a/blimp/common/proto/render_widget.proto b/blimp/common/proto/render_widget.proto |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d99c7398a7078d34d26faa41b8d0ce6c5c2f3533 |
--- /dev/null |
+++ b/blimp/common/proto/render_widget.proto |
@@ -0,0 +1,26 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+// |
+ |
+syntax = "proto2"; |
+ |
+option optimize_for = LITE_RUNTIME; |
+ |
+import "compositor.proto"; |
nyquist
2015/11/24 08:55:44
Nit: What are these two imports for?
David Trainor- moved to gerrit
2015/11/25 17:56:42
Done.
|
+import "input.proto"; |
+ |
+package blimp; |
+ |
+message RenderWidgetMessage { |
+ enum Type { |
+ // TODO(dtrainor): Leaving this a bit open in case we need to send other |
+ // types of RenderWidget messages (like shutdown). |
+ |
+ // Engine => Client types. |
+ INITIALIZE = 1; |
+ } |
+ |
+ optional Type type = 1; |
+ optional uint32 render_widget_id = 2; |
+} |