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

Side by Side Diff: components/copresence/proto/codes.proto

Issue 419073002: Add the copresence DirectiveHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 syntax = "proto2";
xiyuan 2014/07/25 21:02:10 nit: Do we have style guild for proto buf definiti
rkc 2014/07/28 21:02:03 These files are auto-generated using Google3 tools
2 package util.error;
3 option optimize_for = LITE_RUNTIME;
4 enum Code {
Daniel Erat 2014/07/28 21:18:19 why isn't this in enums.proto?
rkc 2014/07/29 00:33:36 This isn't code we control, this is pulled from Go
5 OK = 0;
Daniel Erat 2014/07/28 21:18:19 are these all documented somewhere else?
rkc 2014/07/29 00:33:36 In the original protos on Google3.
6 CANCELLED = 1;
7 UNKNOWN = 2;
8 INVALID_ARGUMENT = 3;
9 DEADLINE_EXCEEDED = 4;
10 NOT_FOUND = 5;
11 ALREADY_EXISTS = 6;
12 PERMISSION_DENIED = 7;
13 UNAUTHENTICATED = 16;
14 RESOURCE_EXHAUSTED = 8;
15 FAILED_PRECONDITION = 9;
16 ABORTED = 10;
17 OUT_OF_RANGE = 11;
18 UNIMPLEMENTED = 12;
19 INTERNAL = 13;
20 UNAVAILABLE = 14;
21 DATA_LOSS = 15;
22 DO_NOT_USE_RESERVED_FOR_FUTURE_EXPANSION_USE_DEFAULT_IN_SWITCH_INSTEAD_ = 20;
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698