| OLD | NEW |
| (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 option optimize_for = LITE_RUNTIME; |
| 7 |
| 8 package tracing.proto; |
| 9 |
| 10 message EventArgsForTesting { |
| 11 message NestedMessage { |
| 12 optional uint64 uint64_field = 1; |
| 13 optional bytes bytes_field = 100; |
| 14 } |
| 15 |
| 16 optional uint32 uint32_field = 1; |
| 17 optional string string_field = 2; |
| 18 repeated NestedMessage nested_fields = 3; |
| 19 } |
| OLD | NEW |