Skip to content

Commit

Permalink
Merge "descriptor: switched required -> optional to newly added field…
Browse files Browse the repository at this point in the history
…s" into main
  • Loading branch information
LalitMaganti authored and Gerrit Code Review committed Sep 26, 2023
2 parents ad35b8c + e901af6 commit 138950c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions protos/perfetto/common/descriptor.proto
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ message UninterpretedOption {
// E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
// "foo.(bar.baz).moo".
message NamePart {
required string name_part = 1;
required bool is_extension = 2;
optional string name_part = 1;
optional bool is_extension = 2;
}
repeated NamePart name = 2;

Expand Down
4 changes: 2 additions & 2 deletions protos/perfetto/trace/perfetto_trace.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5244,8 +5244,8 @@ message UninterpretedOption {
// E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
// "foo.(bar.baz).moo".
message NamePart {
required string name_part = 1;
required bool is_extension = 2;
optional string name_part = 1;
optional bool is_extension = 2;
}
repeated NamePart name = 2;

Expand Down
Binary file modified python/perfetto/trace_processor/trace_processor.descriptor
Binary file not shown.

0 comments on commit 138950c

Please sign in to comment.