| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COMMON_SYSTEM_TRAY_WM_SYSTEM_TRAY_NOTIFIER_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_WM_SYSTEM_TRAY_NOTIFIER_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_WM_SYSTEM_TRAY_NOTIFIER_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_WM_SYSTEM_TRAY_NOTIFIER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| 11 | 11 |
| 12 namespace ash { | 12 namespace ash { |
| 13 | 13 |
| 14 class ClockObserver; |
| 14 struct UpdateInfo; | 15 struct UpdateInfo; |
| 15 class UpdateObserver; | 16 class UpdateObserver; |
| 16 | 17 |
| 17 // Observer and notification manager for the ash system tray. This version | 18 // Observer and notification manager for the ash system tray. This version |
| 18 // contains the observers that have been ported to //ash/common. See also | 19 // contains the observers that have been ported to //ash/common. See also |
| 19 // ash::SystemTrayNotifier. | 20 // ash::SystemTrayNotifier. |
| 20 // TODO(jamescook): After all the observers have been moved, rename this class | 21 // TODO(jamescook): After all the observers have been moved, rename this class |
| 21 // to SystemTrayNotifier. | 22 // to SystemTrayNotifier. |
| 22 class ASH_EXPORT WmSystemTrayNotifier { | 23 class ASH_EXPORT WmSystemTrayNotifier { |
| 23 public: | 24 public: |
| 24 WmSystemTrayNotifier(); | 25 WmSystemTrayNotifier(); |
| 25 ~WmSystemTrayNotifier(); | 26 ~WmSystemTrayNotifier(); |
| 26 | 27 |
| 28 void AddClockObserver(ClockObserver* observer); |
| 29 void RemoveClockObserver(ClockObserver* observer); |
| 30 |
| 27 void AddUpdateObserver(UpdateObserver* observer); | 31 void AddUpdateObserver(UpdateObserver* observer); |
| 28 void RemoveUpdateObserver(UpdateObserver* observer); | 32 void RemoveUpdateObserver(UpdateObserver* observer); |
| 29 | 33 |
| 34 void NotifyRefreshClock(); |
| 35 void NotifyDateFormatChanged(); |
| 36 void NotifySystemClockTimeUpdated(); |
| 37 void NotifySystemClockCanSetTimeChanged(bool can_set_time); |
| 38 |
| 30 void NotifyUpdateRecommended(const UpdateInfo& info); | 39 void NotifyUpdateRecommended(const UpdateInfo& info); |
| 31 | 40 |
| 32 private: | 41 private: |
| 42 base::ObserverList<ClockObserver> clock_observers_; |
| 33 base::ObserverList<UpdateObserver> update_observers_; | 43 base::ObserverList<UpdateObserver> update_observers_; |
| 34 | 44 |
| 35 DISALLOW_COPY_AND_ASSIGN(WmSystemTrayNotifier); | 45 DISALLOW_COPY_AND_ASSIGN(WmSystemTrayNotifier); |
| 36 }; | 46 }; |
| 37 | 47 |
| 38 } // namespace ash | 48 } // namespace ash |
| 39 | 49 |
| 40 #endif // ASH_COMMON_SYSTEM_TRAY_WM_SYSTEM_TRAY_NOTIFIER_H_ | 50 #endif // ASH_COMMON_SYSTEM_TRAY_WM_SYSTEM_TRAY_NOTIFIER_H_ |
| OLD | NEW |