diff options
| author | 2018-09-21 00:14:26 -0700 | |
|---|---|---|
| committer | 2018-09-21 00:14:26 -0700 | |
| commit | 27e85f974b8e2a35af802e46c9901a56ccfa62f0 (patch) | |
| tree | 4ad19e8024378b766bf4fb7ca74d74595dd37e37 | |
| parent | 2f9ed9b9a13401fa2e154969bc4df0020a49f1b5 (diff) | |
| parent | 385430903030dfd591d6f75418636883c4cbeb27 (diff) | |
Merge "Statsd atoms: restrict OEM fields 100000-199999" am: 824f940195
am: 3854309030
Change-Id: I8c7cd1a832d496b469a98a4b9509f17c809cc78a
| -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. } /** |