| Index: ash/system/tray/system_tray_notifier.h
|
| diff --git a/ash/system/tray/system_tray_notifier.h b/ash/system/tray/system_tray_notifier.h
|
| index e7f859ce8e81efda02f9be02ac6e65f8473f7bd0..98bd985867eb5f820d4b10775f24f9763b0c1739 100644
|
| --- a/ash/system/tray/system_tray_notifier.h
|
| +++ b/ash/system/tray/system_tray_notifier.h
|
| @@ -11,7 +11,6 @@
|
| #include <vector>
|
|
|
| #include "ash/ash_export.h"
|
| -#include "ash/system/audio/audio_observer.h"
|
| #include "ash/system/chromeos/tray_tracing.h"
|
| #include "ash/system/user/user_observer.h"
|
| #include "base/macros.h"
|
| @@ -42,9 +41,6 @@ class ASH_EXPORT SystemTrayNotifier {
|
| SystemTrayNotifier();
|
| ~SystemTrayNotifier();
|
|
|
| - void AddAudioObserver(AudioObserver* observer);
|
| - void RemoveAudioObserver(AudioObserver* observer);
|
| -
|
| void AddTracingObserver(TracingObserver* observer);
|
| void RemoveTracingObserver(TracingObserver* observer);
|
|
|
| @@ -85,11 +81,6 @@ class ASH_EXPORT SystemTrayNotifier {
|
| void RemoveLastWindowClosedObserver(LastWindowClosedObserver* observer);
|
| #endif
|
|
|
| - void NotifyAudioOutputVolumeChanged(uint64_t node_id, double volume);
|
| - void NotifyAudioOutputMuteChanged(bool mute_on, bool system_adjust);
|
| - void NotifyAudioNodesChanged();
|
| - void NotifyAudioActiveOutputNodeChanged();
|
| - void NotifyAudioActiveInputNodeChanged();
|
| void NotifyTracingModeChanged(bool value);
|
| void NotifyUserUpdate();
|
| void NotifyUserAddedToSession();
|
| @@ -114,7 +105,6 @@ class ASH_EXPORT SystemTrayNotifier {
|
| #endif
|
|
|
| private:
|
| - base::ObserverList<AudioObserver> audio_observers_;
|
| base::ObserverList<TracingObserver> tracing_observers_;
|
| base::ObserverList<UserObserver> user_observers_;
|
| #if defined(OS_CHROMEOS)
|
|
|