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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 void AddLastWindowClosedObserver(LastWindowClosedObserver* observer); | 104 void AddLastWindowClosedObserver(LastWindowClosedObserver* observer); |
105 void RemoveLastWindowClosedObserver(LastWindowClosedObserver* observer); | 105 void RemoveLastWindowClosedObserver(LastWindowClosedObserver* observer); |
106 | 106 |
107 void AddVirtualKeyboardObserver(VirtualKeyboardObserver* observer); | 107 void AddVirtualKeyboardObserver(VirtualKeyboardObserver* observer); |
108 void RemoveVirtualKeyboardObserver(VirtualKeyboardObserver* observer); | 108 void RemoveVirtualKeyboardObserver(VirtualKeyboardObserver* observer); |
109 #endif | 109 #endif |
110 | 110 |
111 void NotifyAccessibilityModeChanged( | 111 void NotifyAccessibilityModeChanged( |
112 ui::AccessibilityNotificationVisibility notify); | 112 ui::AccessibilityNotificationVisibility notify); |
113 void NotifyAudioOutputVolumeChanged(uint64_t node_id, double volume); | 113 void NotifyAudioOutputVolumeChanged(uint64_t node_id, double volume); |
114 void NotifyAudioOutputMuteChanged(bool mute_on); | 114 void NotifyAudioOutputMuteChanged(bool mute_on, bool system_adjust); |
115 void NotifyAudioNodesChanged(); | 115 void NotifyAudioNodesChanged(); |
116 void NotifyAudioActiveOutputNodeChanged(); | 116 void NotifyAudioActiveOutputNodeChanged(); |
117 void NotifyAudioActiveInputNodeChanged(); | 117 void NotifyAudioActiveInputNodeChanged(); |
118 void NotifyTracingModeChanged(bool value); | 118 void NotifyTracingModeChanged(bool value); |
119 void NotifyRefreshBluetooth(); | 119 void NotifyRefreshBluetooth(); |
120 void NotifyBluetoothDiscoveringChanged(); | 120 void NotifyBluetoothDiscoveringChanged(); |
121 void NotifyRefreshClock(); | 121 void NotifyRefreshClock(); |
122 void NotifyDateFormatChanged(); | 122 void NotifyDateFormatChanged(); |
123 void NotifySystemClockTimeUpdated(); | 123 void NotifySystemClockTimeUpdated(); |
124 void NotifySystemClockCanSetTimeChanged(bool can_set_time); | 124 void NotifySystemClockCanSetTimeChanged(bool can_set_time); |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; | 173 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; |
174 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; | 174 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; |
175 #endif | 175 #endif |
176 | 176 |
177 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); | 177 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); |
178 }; | 178 }; |
179 | 179 |
180 } // namespace ash | 180 } // namespace ash |
181 | 181 |
182 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 182 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
OLD | NEW |