| Index: extensions/browser/api/audio/audio_service_chromeos.cc
|
| diff --git a/extensions/browser/api/audio/audio_service_chromeos.cc b/extensions/browser/api/audio/audio_service_chromeos.cc
|
| index 0ac471119a9293d265e4d28022e4b776c13ee619..7f7e8566c6620e082429ca40da385ea4b4cd9747 100644
|
| --- a/extensions/browser/api/audio/audio_service_chromeos.cc
|
| +++ b/extensions/browser/api/audio/audio_service_chromeos.cc
|
| @@ -41,7 +41,7 @@ class AudioServiceImpl : public AudioService,
|
| // chromeos::CrasAudioHandler::AudioObserver overrides.
|
| void OnOutputNodeVolumeChanged(uint64_t id, int volume) override;
|
| void OnInputNodeGainChanged(uint64_t id, int gain) override;
|
| - void OnOutputMuteChanged(bool mute_on) override;
|
| + void OnOutputMuteChanged(bool mute_on, bool system_adjust) override;
|
| void OnInputMuteChanged(bool mute_on) override;
|
| void OnAudioNodesChanged() override;
|
| void OnActiveOutputNodeChanged() override;
|
| @@ -199,7 +199,7 @@ void AudioServiceImpl::OnOutputNodeVolumeChanged(uint64_t id, int volume) {
|
| NotifyLevelChanged(id, volume);
|
| }
|
|
|
| -void AudioServiceImpl::OnOutputMuteChanged(bool mute_on) {
|
| +void AudioServiceImpl::OnOutputMuteChanged(bool mute_on, bool system_adjust) {
|
| NotifyMuteChanged(false, mute_on);
|
| }
|
|
|
|
|