diff options
| author | 2018-09-21 03:00:33 +0000 | |
|---|---|---|
| committer | 2018-09-21 03:00:33 +0000 | |
| commit | 824f940195a5c9abfcfe2f27ded2cf9795d7fce8 (patch) | |
| tree | e751a8637e36f45845ec2ac41a135d077d2df7d4 | |
| parent | 833a6276eddd9271d910ef1583c039294754d1fa (diff) | |
| parent | 76aafcfbeab5da0e72ba54a0f05cb6cf472aebeb (diff) | |
Merge "Statsd atoms: restrict OEM fields 100000-199999"
| -rw-r--r-- | cmds/statsd/src/atoms.proto | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 18f6a1c28086..c4824c084370 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -152,8 +152,9 @@ message Atom { Temperature temperature = 10021; } - // DO NOT USE field numbers above 100,000 in AOSP. Field numbers above - // 100,000 are reserved for non-AOSP (e.g. OEMs) to use. + // DO NOT USE field numbers above 100,000 in AOSP. + // Field numbers 100,000 - 199,999 are reserved for non-AOSP (e.g. OEMs) to use. + // Field numbers 200,000 and above are reserved for future use; do not use them at all. } /** |