| 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 81ed05f53b38a34ad8706ef3040f2fb23825c57a..b3a01dd815eabf2826c68b27ade6bb574144fc6d 100644
|
| --- a/ash/system/tray/system_tray_notifier.cc
|
| +++ b/ash/system/tray/system_tray_notifier.cc
|
| @@ -195,11 +195,10 @@ void SystemTrayNotifier::NotifyAccessibilityModeChanged(
|
| OnAccessibilityModeChanged(notify));
|
| }
|
|
|
| -void SystemTrayNotifier::NotifyAudioOutputVolumeChanged() {
|
| - FOR_EACH_OBSERVER(
|
| - AudioObserver,
|
| - audio_observers_,
|
| - OnOutputVolumeChanged());
|
| +void SystemTrayNotifier::NotifyAudioOutputVolumeChanged(uint64 node_id,
|
| + double volume) {
|
| + FOR_EACH_OBSERVER(AudioObserver, audio_observers_,
|
| + OnOutputNodeVolumeChanged(node_id, volume));
|
| }
|
|
|
| void SystemTrayNotifier::NotifyAudioOutputMuteChanged() {
|
|
|