| Index: ash/common/system/tray/wm_system_tray_notifier.h
|
| diff --git a/ash/common/system/tray/wm_system_tray_notifier.h b/ash/common/system/tray/wm_system_tray_notifier.h
|
| index f6d8c7b52791653da9829e7e37dead400afe9c64..84e081f3bd401331691863497291ec5eacf2bfb5 100644
|
| --- a/ash/common/system/tray/wm_system_tray_notifier.h
|
| +++ b/ash/common/system/tray/wm_system_tray_notifier.h
|
| @@ -14,6 +14,7 @@
|
| namespace ash {
|
|
|
| class AccessibilityObserver;
|
| +class AudioObserver;
|
| class ClockObserver;
|
| class IMEObserver;
|
| struct UpdateInfo;
|
| @@ -39,6 +40,15 @@ class ASH_EXPORT WmSystemTrayNotifier {
|
| void NotifyAccessibilityModeChanged(
|
| AccessibilityNotificationVisibility notify);
|
|
|
| + // Audio.
|
| + void AddAudioObserver(AudioObserver* observer);
|
| + void RemoveAudioObserver(AudioObserver* observer);
|
| + void NotifyAudioOutputVolumeChanged(uint64_t node_id, double volume);
|
| + void NotifyAudioOutputMuteChanged(bool mute_on, bool system_adjust);
|
| + void NotifyAudioNodesChanged();
|
| + void NotifyAudioActiveOutputNodeChanged();
|
| + void NotifyAudioActiveInputNodeChanged();
|
| +
|
| // Date and time.
|
| void AddClockObserver(ClockObserver* observer);
|
| void RemoveClockObserver(ClockObserver* observer);
|
| @@ -75,6 +85,7 @@ class ASH_EXPORT WmSystemTrayNotifier {
|
|
|
| private:
|
| base::ObserverList<AccessibilityObserver> accessibility_observers_;
|
| + base::ObserverList<AudioObserver> audio_observers_;
|
| base::ObserverList<ClockObserver> clock_observers_;
|
| base::ObserverList<IMEObserver> ime_observers_;
|
| base::ObserverList<LocaleObserver> locale_observers_;
|
|
|