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

Side by Side Diff: third_party/protobuf/php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php

Issue 2495533002: third_party/protobuf: Update to HEAD (83d681ee2c) (Closed)
Patch Set: Make chrome settings proto generated file a component Created 4 years 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 <?php
2 # Generated by the protocol buffer compiler. DO NOT EDIT!
3 # source: google/protobuf/descriptor.proto
4
5 /**
6 * Protobuf enum <code>google.protobuf.FieldDescriptorProto.Type</code>
7 */
8 namespace Google\Protobuf\Internal;
9
10 class FieldDescriptorProto_Type
11 {
12 /**
13 * <pre>
14 * 0 is reserved for errors.
15 * Order is weird for historical reasons.
16 * </pre>
17 *
18 * <code>TYPE_DOUBLE = 1;</code>
19 */
20 const TYPE_DOUBLE = 1;
21 /**
22 * <code>TYPE_FLOAT = 2;</code>
23 */
24 const TYPE_FLOAT = 2;
25 /**
26 * <pre>
27 * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
28 * negative values are likely.
29 * </pre>
30 *
31 * <code>TYPE_INT64 = 3;</code>
32 */
33 const TYPE_INT64 = 3;
34 /**
35 * <code>TYPE_UINT64 = 4;</code>
36 */
37 const TYPE_UINT64 = 4;
38 /**
39 * <pre>
40 * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
41 * negative values are likely.
42 * </pre>
43 *
44 * <code>TYPE_INT32 = 5;</code>
45 */
46 const TYPE_INT32 = 5;
47 /**
48 * <code>TYPE_FIXED64 = 6;</code>
49 */
50 const TYPE_FIXED64 = 6;
51 /**
52 * <code>TYPE_FIXED32 = 7;</code>
53 */
54 const TYPE_FIXED32 = 7;
55 /**
56 * <code>TYPE_BOOL = 8;</code>
57 */
58 const TYPE_BOOL = 8;
59 /**
60 * <code>TYPE_STRING = 9;</code>
61 */
62 const TYPE_STRING = 9;
63 /**
64 * <pre>
65 * Tag-delimited aggregate.
66 * </pre>
67 *
68 * <code>TYPE_GROUP = 10;</code>
69 */
70 const TYPE_GROUP = 10;
71 /**
72 * <pre>
73 * Length-delimited aggregate.
74 * </pre>
75 *
76 * <code>TYPE_MESSAGE = 11;</code>
77 */
78 const TYPE_MESSAGE = 11;
79 /**
80 * <pre>
81 * New in version 2.
82 * </pre>
83 *
84 * <code>TYPE_BYTES = 12;</code>
85 */
86 const TYPE_BYTES = 12;
87 /**
88 * <code>TYPE_UINT32 = 13;</code>
89 */
90 const TYPE_UINT32 = 13;
91 /**
92 * <code>TYPE_ENUM = 14;</code>
93 */
94 const TYPE_ENUM = 14;
95 /**
96 * <code>TYPE_SFIXED32 = 15;</code>
97 */
98 const TYPE_SFIXED32 = 15;
99 /**
100 * <code>TYPE_SFIXED64 = 16;</code>
101 */
102 const TYPE_SFIXED64 = 16;
103 /**
104 * <pre>
105 * Uses ZigZag encoding.
106 * </pre>
107 *
108 * <code>TYPE_SINT32 = 17;</code>
109 */
110 const TYPE_SINT32 = 17;
111 /**
112 * <pre>
113 * Uses ZigZag encoding.
114 * </pre>
115 *
116 * <code>TYPE_SINT64 = 18;</code>
117 */
118 const TYPE_SINT64 = 18;
119 }
120
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698