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

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

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 years, 11 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
« no previous file with comments | « blimp/common/proto/navigation.proto ('k') | blimp/common/proto/render_widget.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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 // Indicates the message-Id that the peer has most-recently processed.
12 message CheckpointAckMessage {
13 optional int64 checkpoint_id = 1;
14 }
15
16 // Contains Client->Engine information to establish an authenticated connection.
17 message StartConnectionMessage {
18 optional string client_auth_token = 1;
19 optional int32 protocol_version = 2;
20 }
21
22 // Indicates the reason for the peer ending the connection.
23 message EndConnectionMessage {
24 enum Reason {
25 UNKNOWN = 0;
26 AUTHENTICATION_FAILED = 1;
27 PROTOCOL_MISMATCH = 2;
28 };
29 optional Reason reason = 1;
30 }
31
32 message ProtocolControlMessage {
33 oneof connection_message {
34 // Client => Server types.
35 StartConnectionMessage start_connection = 41;
36
37 // Bi-directional types.
38 CheckpointAckMessage checkpoint_ack = 42;
39 EndConnectionMessage end_connection = 43;
40 }
41 }
OLDNEW
« no previous file with comments | « blimp/common/proto/navigation.proto ('k') | blimp/common/proto/render_widget.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698