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

Side by Side Diff: third_party/protobuf/php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.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.Label</code>
7 */
8 namespace Google\Protobuf\Internal;
9
10 class FieldDescriptorProto_Label
11 {
12 /**
13 * <pre>
14 * 0 is reserved for errors
15 * </pre>
16 *
17 * <code>LABEL_OPTIONAL = 1;</code>
18 */
19 const LABEL_OPTIONAL = 1;
20 /**
21 * <code>LABEL_REQUIRED = 2;</code>
22 */
23 const LABEL_REQUIRED = 2;
24 /**
25 * <code>LABEL_REPEATED = 3;</code>
26 */
27 const LABEL_REPEATED = 3;
28 }
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698