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

Unified Diff: blimp/common/proto/render_widget.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: Address comments! 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/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;
+}

Powered by Google App Engine
This is Rietveld 408576698