| Index: ash/system/tray/system_tray_notifier.cc
|
| diff --git a/ash/system/tray/system_tray_notifier.cc b/ash/system/tray/system_tray_notifier.cc
|
| index 40e70501df9e1199992ac14135bc6bf0a21152dc..ec5bd8d122a6ba7086bae809a0fb31f6d95b3fcc 100644
|
| --- a/ash/system/tray/system_tray_notifier.cc
|
| +++ b/ash/system/tray/system_tray_notifier.cc
|
| @@ -201,9 +201,10 @@ void SystemTrayNotifier::NotifyAudioOutputVolumeChanged(uint64_t node_id,
|
| OnOutputNodeVolumeChanged(node_id, volume));
|
| }
|
|
|
| -void SystemTrayNotifier::NotifyAudioOutputMuteChanged(bool mute_on) {
|
| +void SystemTrayNotifier::NotifyAudioOutputMuteChanged(bool mute_on,
|
| + bool system_adjust) {
|
| FOR_EACH_OBSERVER(AudioObserver, audio_observers_,
|
| - OnOutputMuteChanged(mute_on));
|
| + OnOutputMuteChanged(mute_on, system_adjust));
|
| }
|
|
|
| void SystemTrayNotifier::NotifyAudioNodesChanged() {
|
|
|