| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 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(); | 113 void NotifyAudioOutputVolumeChanged(uint64 node_id, double volume); |
| 114 void NotifyAudioOutputMuteChanged(); | 114 void NotifyAudioOutputMuteChanged(); |
| 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(); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 ObserverList<LastWindowClosedObserver> last_window_closed_observers_; | 172 ObserverList<LastWindowClosedObserver> last_window_closed_observers_; |
| 173 ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; | 173 ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; |
| 174 #endif | 174 #endif |
| 175 | 175 |
| 176 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); | 176 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); |
| 177 }; | 177 }; |
| 178 | 178 |
| 179 } // namespace ash | 179 } // namespace ash |
| 180 | 180 |
| 181 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 181 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
| OLD | NEW |