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

Side by Side Diff: blimp/common/proto/blob_channel.proto

Issue 1970463004: Blimp: Add BlobChannel Helium messages and delegate impls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: haibinlu feedback Created 4 years, 7 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 syntax = "proto2";
6
7 option optimize_for = LITE_RUNTIME;
8
9 package blimp;
10
11 message BlobChannelMessage {
12 enum Type {
13 UNKNOWN = 0;
14
15 // Engine => Client types.
16 TRANSFER_BLOB = 1;
17 }
18
19 optional Type type = 1 [default = UNKNOWN];
20 optional string blob_id = 2;
21 optional bytes payload = 3;
Wez 2016/05/20 21:46:17 nit: Want to use oneof here, and define a Transfer
Kevin M 2016/05/23 20:48:07 Done.
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698