| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "ash/ash_export.h" | 13 #include "ash/ash_export.h" |
| 14 #include "ash/common/system/update/update_observer.h" |
| 14 #include "ash/system/audio/audio_observer.h" | 15 #include "ash/system/audio/audio_observer.h" |
| 15 #include "ash/system/chromeos/tray_tracing.h" | 16 #include "ash/system/chromeos/tray_tracing.h" |
| 16 #include "ash/system/date/clock_observer.h" | 17 #include "ash/system/date/clock_observer.h" |
| 17 #include "ash/system/ime/ime_observer.h" | 18 #include "ash/system/ime/ime_observer.h" |
| 18 #include "ash/system/locale/locale_observer.h" | 19 #include "ash/system/locale/locale_observer.h" |
| 19 #include "ash/system/tray_accessibility.h" | 20 #include "ash/system/tray_accessibility.h" |
| 20 #include "ash/system/user/update_observer.h" | |
| 21 #include "ash/system/user/user_observer.h" | 21 #include "ash/system/user/user_observer.h" |
| 22 #include "base/macros.h" | 22 #include "base/macros.h" |
| 23 #include "base/observer_list.h" | 23 #include "base/observer_list.h" |
| 24 | 24 |
| 25 #if defined(OS_CHROMEOS) | 25 #if defined(OS_CHROMEOS) |
| 26 #include "ash/system/chromeos/bluetooth/bluetooth_observer.h" | 26 #include "ash/system/chromeos/bluetooth/bluetooth_observer.h" |
| 27 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h" | 27 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h" |
| 28 #include "ash/system/chromeos/network/network_observer.h" | 28 #include "ash/system/chromeos/network/network_observer.h" |
| 29 #include "ash/system/chromeos/network/network_portal_detector_observer.h" | 29 #include "ash/system/chromeos/network/network_portal_detector_observer.h" |
| 30 #include "ash/system/chromeos/screen_security/screen_capture_observer.h" | 30 #include "ash/system/chromeos/screen_security/screen_capture_observer.h" |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; | 177 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; |
| 178 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; | 178 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; |
| 179 #endif | 179 #endif |
| 180 | 180 |
| 181 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); | 181 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); |
| 182 }; | 182 }; |
| 183 | 183 |
| 184 } // namespace ash | 184 } // namespace ash |
| 185 | 185 |
| 186 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 186 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
| OLD | NEW |