| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 ObserverList<LastWindowClosedObserver> last_window_closed_observers_; | 171 ObserverList<LastWindowClosedObserver> last_window_closed_observers_; |
| 172 scoped_ptr<NetworkStateNotifier> network_state_notifier_; | 172 scoped_ptr<NetworkStateNotifier> network_state_notifier_; |
| 173 #endif | 173 #endif |
| 174 | 174 |
| 175 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); | 175 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); |
| 176 }; | 176 }; |
| 177 | 177 |
| 178 } // namespace ash | 178 } // namespace ash |
| 179 | 179 |
| 180 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 180 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
| OLD | NEW |