aboutsummaryrefslogtreecommitdiff
path: root/car-lib
diff options
context:
space:
mode:
authorHongwei Wang <hwwang@google.com>2018-06-07 12:34:15 -0700
committerHongwei Wang <hwwang@google.com>2018-06-07 12:47:38 -0700
commit902d5ab00f7ee177174d7e0616f99ff48a07ed74 (patch)
tree46b47f034c54761c2056e200b1225890cd8190ab /car-lib
parent9eb8e1bcd0ef89878328a2a30011b8e572c5a9ff (diff)
downloadCar-902d5ab00f7ee177174d7e0616f99ff48a07ed74.tar.gz
Support flags for volume change callback
Note: this change adds the support of flags and need further changes to actually fix the UI/UX logic raise by the original bug Bug: 109841417 Test: m -j Change-Id: Ifdbe4afa672af02c7f66417b614609893ee737b2
Diffstat (limited to 'car-lib')
-rw-r--r--car-lib/src/android/car/media/ICarVolumeCallback.aidl4
1 files changed, 2 insertions, 2 deletions
diff --git a/car-lib/src/android/car/media/ICarVolumeCallback.aidl b/car-lib/src/android/car/media/ICarVolumeCallback.aidl
index 10a5ddc42b..8540680d0e 100644
--- a/car-lib/src/android/car/media/ICarVolumeCallback.aidl
+++ b/car-lib/src/android/car/media/ICarVolumeCallback.aidl
@@ -27,12 +27,12 @@ oneway interface ICarVolumeCallback {
* The changed-to volume index is not included, the caller is encouraged to
* get the current group volume index via CarAudioManager.
*/
- void onGroupVolumeChanged(int groupId);
+ void onGroupVolumeChanged(int groupId, int flags);
/**
* This is called whenever the master mute state is changed.
* The changed-to master mute state is not included, the caller is encouraged to
* get the current master mute state via AudioManager.
*/
- void onMasterMuteChanged();
+ void onMasterMuteChanged(int flags);
}