OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 5 #ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 void RemoveScreenCaptureObserver(ScreenCaptureObserver* observer); | 98 void RemoveScreenCaptureObserver(ScreenCaptureObserver* observer); |
99 | 99 |
100 void AddScreenShareObserver(ScreenShareObserver* observer); | 100 void AddScreenShareObserver(ScreenShareObserver* observer); |
101 void RemoveScreenShareObserver(ScreenShareObserver* observer); | 101 void RemoveScreenShareObserver(ScreenShareObserver* observer); |
102 | 102 |
103 void AddLastWindowClosedObserver(LastWindowClosedObserver* observer); | 103 void AddLastWindowClosedObserver(LastWindowClosedObserver* observer); |
104 void RemoveLastWindowClosedObserver(LastWindowClosedObserver* observer); | 104 void RemoveLastWindowClosedObserver(LastWindowClosedObserver* observer); |
105 #endif | 105 #endif |
106 | 106 |
107 void NotifyAccessibilityModeChanged( | 107 void NotifyAccessibilityModeChanged( |
108 AccessibilityNotificationVisibility notify); | 108 ui::AccessibilityNotificationVisibility notify); |
109 void NotifyAudioOutputVolumeChanged(); | 109 void NotifyAudioOutputVolumeChanged(); |
110 void NotifyAudioOutputMuteChanged(); | 110 void NotifyAudioOutputMuteChanged(); |
111 void NotifyAudioNodesChanged(); | 111 void NotifyAudioNodesChanged(); |
112 void NotifyAudioActiveOutputNodeChanged(); | 112 void NotifyAudioActiveOutputNodeChanged(); |
113 void NotifyAudioActiveInputNodeChanged(); | 113 void NotifyAudioActiveInputNodeChanged(); |
114 void NotifyTracingModeChanged(bool value); | 114 void NotifyTracingModeChanged(bool value); |
115 void NotifyRefreshBluetooth(); | 115 void NotifyRefreshBluetooth(); |
116 void NotifyBluetoothDiscoveringChanged(); | 116 void NotifyBluetoothDiscoveringChanged(); |
117 void NotifyRefreshClock(); | 117 void NotifyRefreshClock(); |
118 void NotifyDateFormatChanged(); | 118 void NotifyDateFormatChanged(); |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 ObserverList<ScreenShareObserver> screen_share_observers_; | 166 ObserverList<ScreenShareObserver> screen_share_observers_; |
167 ObserverList<LastWindowClosedObserver> last_window_closed_observers_; | 167 ObserverList<LastWindowClosedObserver> last_window_closed_observers_; |
168 #endif | 168 #endif |
169 | 169 |
170 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); | 170 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); |
171 }; | 171 }; |
172 | 172 |
173 } // namespace ash | 173 } // namespace ash |
174 | 174 |
175 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 175 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
OLD | NEW |