diff options
author | Roger Fang <rogerfang@google.com> | 2022-08-24 01:40:20 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2022-08-24 01:40:20 +0000 |
commit | 2dfdb3c74b48d4230e802d04c169cfa1cc7d34ab (patch) | |
tree | d90a43bf38349afa423edbc1527be6b895756426 | |
parent | b000d69db34d528eacfb01d812262b2527b3c61e (diff) | |
parent | 7172d48cdf62b0aa7ddaa9920c13c49990a4fb9c (diff) |
Merge "pixelstat: add missing attr of VendorAudioHardwareStatsReported" into tm-qpr-dev
-rw-r--r-- | pixelstats/pixelatoms.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pixelstats/pixelatoms.proto b/pixelstats/pixelatoms.proto index 9459711..d3a3e1e 100644 --- a/pixelstats/pixelatoms.proto +++ b/pixelstats/pixelatoms.proto @@ -1153,9 +1153,10 @@ message BlockStatsReported { * Logs the reported vendor audio hardware stats. */ message VendorAudioHardwareStatsReported { + optional string reverse_domain_name = 1; /* The percentage of calls in a day where auto-mic-switch triggered. * It represented as a fixed-point integer with three decimal place. * E.g.:12.345% is repsented by 12345. */ - optional int32 milli_rate_of_AMS_per_day = 1; + optional int32 milli_rate_of_AMS_per_day = 2; } |