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

Side by Side Diff: third_party/dom_distiller_js/test_sample.proto

Issue 2034373002: Generate the proto JSON converter for DOM distiller (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows-specific fixes Created 4 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 syntax = "proto2";
6
7 package dom_distiller.test_sample.proto;
8 option optimize_for = LITE_RUNTIME;
9 option java_package = "org.chromium.distiller.test_sample.proto";
10 option java_outer_classname = "DomDistillerTestProtos";
11
12 message TypeTest {
13 optional float float_value = 1;
14 optional double double_value = 2;
15 optional int32 int32_value = 3;
16 optional bool bool_value = 4;
17 optional string string_value = 5;
18 message Message { optional bool dummy = 1; }
19 optional Message message_value = 6;
20 }
21
22 message Repeated {
23 repeated float float_value = 1;
24 repeated double double_value = 2;
25 repeated int32 int32_value = 3;
26 repeated bool bool_value = 4;
27 repeated string string_value = 5;
28 message Message { repeated bool dummy = 1; }
29 repeated Message message_value = 6;
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698