-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "track_event: Mark extension range used by chromium" into main
- Loading branch information
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10884,8 +10884,11 @@ message TrackEvent { | |
// Contact [email protected] if you are interested in a subrange | ||
// for your project. | ||
|
||
// Extension range reserved for chromium: | ||
// https://source.chromium.org/chromium/chromium/src/+/main:base/tracing/protos/chrome_track_event.proto | ||
extensions 1000 to 1999; | ||
// Extension range for future use. | ||
extensions 1000 to 9899; | ||
extensions 2000 to 9899; | ||
// Reserved for Perfetto unit and integration tests. | ||
extensions 9900 to 10000; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -280,8 +280,11 @@ message TrackEvent { | |
// Contact [email protected] if you are interested in a subrange | ||
// for your project. | ||
|
||
// Extension range reserved for chromium: | ||
// https://source.chromium.org/chromium/chromium/src/+/main:base/tracing/protos/chrome_track_event.proto | ||
extensions 1000 to 1999; | ||
// Extension range for future use. | ||
extensions 1000 to 9899; | ||
extensions 2000 to 9899; | ||
// Reserved for Perfetto unit and integration tests. | ||
extensions 9900 to 10000; | ||
|
||
|