Chromium Code Reviews

Side by Side Diff: common/proto/google/descutil/util_test.proto

Issue 2219023003: Update APIs to use new Google cloud paths. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 syntax = "proto3"; 1 syntax = "proto3";
2 2
3 package pkg; 3 package descutil;
4 4
5 5
6 // Enum comment. 6 // Enum comment.
7 // next line. 7 // next line.
8 enum E1 { 8 enum E1 {
9 // V0 9 // V0
10 // next line. 10 // next line.
11 V0 = 0; 11 V0 = 0;
12 // V1 12 // V1
13 // next line. 13 // next line.
(...skipping 59 matching lines...)
73 message NestedMessageParent { 73 message NestedMessageParent {
74 message NestedMessage { 74 message NestedMessage {
75 int32 f1 = 1; 75 int32 f1 = 1;
76 int32 f2 = 2; 76 int32 f2 = 2;
77 } 77 }
78 enum NestedEnum { 78 enum NestedEnum {
79 V0 = 0; 79 V0 = 0;
80 V1 = 1; 80 V1 = 1;
81 } 81 }
82 } 82 }
OLDNEW

Powered by Google App Engine