| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 option optimize_for = LITE_RUNTIME; |
| 7 |
| 6 package foo.bar; | 8 package foo.bar; |
| 7 | 9 |
| 8 import "library.proto"; | 10 import "library.proto"; |
| 9 | 11 |
| 10 // This file contains comprehensive set of supported message structures and | 12 // This file contains comprehensive set of supported message structures and |
| 11 // data types. Unit tests depends on the plugin-processed version of this file. | 13 // data types. Unit tests depends on the plugin-processed version of this file. |
| 12 | 14 |
| 13 // Tests importing message definition from another proto file. | 15 // Tests importing message definition from another proto file. |
| 14 message TransgalacticParcel { | 16 message TransgalacticParcel { |
| 15 optional TransgalacticMessage message = 1; | 17 optional TransgalacticMessage message = 1; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 optional bool foo_bar_baz = 1; | 81 optional bool foo_bar_baz = 1; |
| 80 optional bool barBaz = 2; | 82 optional bool barBaz = 2; |
| 81 optional bool MooMoo = 3; | 83 optional bool MooMoo = 3; |
| 82 optional bool URLEncoder = 4; | 84 optional bool URLEncoder = 4; |
| 83 optional bool XMap = 5; | 85 optional bool XMap = 5; |
| 84 optional bool UrLE_nco__der = 6; | 86 optional bool UrLE_nco__der = 6; |
| 85 optional bool __bigBang = 7; | 87 optional bool __bigBang = 7; |
| 86 optional bool U2 = 8; | 88 optional bool U2 = 8; |
| 87 optional bool bangBig__ = 9; | 89 optional bool bangBig__ = 9; |
| 88 } | 90 } |
| OLD | NEW |