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

Side by Side Diff: third_party/protobuf/php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.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 * <pre>
7 * Generated classes can be optimized for speed or code size.
8 * </pre>
9 *
10 * Protobuf enum <code>google.protobuf.FileOptions.OptimizeMode</code>
11 */
12 namespace Google\Protobuf\Internal;
13
14 class FileOptions_OptimizeMode
15 {
16 /**
17 * <pre>
18 * Generate complete code for parsing, serialization,
19 * </pre>
20 *
21 * <code>SPEED = 1;</code>
22 */
23 const SPEED = 1;
24 /**
25 * <pre>
26 * etc.
27 * </pre>
28 *
29 * <code>CODE_SIZE = 2;</code>
30 */
31 const CODE_SIZE = 2;
32 /**
33 * <pre>
34 * Generate code using MessageLite and the lite runtime.
35 * </pre>
36 *
37 * <code>LITE_RUNTIME = 3;</code>
38 */
39 const LITE_RUNTIME = 3;
40 }
41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698