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

Unified Diff: blimp/common/proto/blimp_message.proto

Issue 1422363008: Add a basic UI to the Android Blimp client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made sure to clear old control data 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/BUILD.gn ('k') | blimp/common/proto/blimp_proto_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/proto/blimp_message.proto
diff --git a/blimp/common/proto/blimp_message.proto b/blimp/common/proto/blimp_message.proto
index 553119d49f7d778fa0d38b9526da8dc763cdbfb2..e81c608f09633d6128cb752d01ea213d6f93863d 100644
--- a/blimp/common/proto/blimp_message.proto
+++ b/blimp/common/proto/blimp_message.proto
@@ -27,6 +27,7 @@ option optimize_for = LITE_RUNTIME;
import "control.proto";
import "compositor.proto";
import "input.proto";
+import "navigation.proto";
package blimp;
@@ -35,6 +36,7 @@ message BlimpMessage {
COMPOSITOR = 0;
INPUT = 1;
CONTROL = 2;
+ NAVIGATION = 3;
}
// Identifies the feature type of this message.
// The feature-specific contents are contained in optional fields of the same
@@ -58,5 +60,6 @@ message BlimpMessage {
optional CompositorMessage compositor = 1000;
optional InputMessage input = 1001;
optional ControlMessage control = 1002;
+ optional NavigationMessage navigation = 1003;
}
« no previous file with comments | « blimp/common/proto/BUILD.gn ('k') | blimp/common/proto/blimp_proto_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698