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

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

Issue 2462183002: GRPC Stream implementation of HeliumStream
Patch Set: Created 4 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/helium_service.proto
diff --git a/blimp/common/proto/common.proto b/blimp/common/proto/helium_service.proto
similarity index 55%
copy from blimp/common/proto/common.proto
copy to blimp/common/proto/helium_service.proto
index 2684302d65efa3c23ef949c266c2ec6081f20e77..d236d1318ddc1632c4ef20dee7ef54f00bb9e521 100644
--- a/blimp/common/proto/common.proto
+++ b/blimp/common/proto/helium_service.proto
@@ -1,13 +1,17 @@
// Copyright 2016 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.
-//
-// Message definitions shared across proto files.
-syntax = "proto2";
+syntax = "proto3";
option optimize_for = LITE_RUNTIME;
package blimp;
-message EmptyMessage {}
+message HeliumWrapper {
+ bytes serialized_helium_message = 1;
Kevin M 2016/10/31 21:33:25 Since we'll be sending BlimpMessages and HeliumMes
+}
+
+service HeliumService {
+ rpc Stream(stream HeliumWrapper) returns (stream HeliumWrapper) {}
+}

Powered by Google App Engine
This is Rietveld 408576698