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

Side by Side Diff: third_party/protobuf/php/src/Google/Protobuf/Internal/FieldOptions_JSType.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.FieldOptions.JSType</code>
7 */
8 namespace Google\Protobuf\Internal;
9
10 class FieldOptions_JSType
11 {
12 /**
13 * <pre>
14 * Use the default type.
15 * </pre>
16 *
17 * <code>JS_NORMAL = 0;</code>
18 */
19 const JS_NORMAL = 0;
20 /**
21 * <pre>
22 * Use JavaScript strings.
23 * </pre>
24 *
25 * <code>JS_STRING = 1;</code>
26 */
27 const JS_STRING = 1;
28 /**
29 * <pre>
30 * Use JavaScript numbers.
31 * </pre>
32 *
33 * <code>JS_NUMBER = 2;</code>
34 */
35 const JS_NUMBER = 2;
36 }
37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698