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 |
11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
12 #include "ash/system/audio/audio_observer.h" | 12 #include "ash/system/audio/audio_observer.h" |
13 #include "ash/system/bluetooth/bluetooth_observer.h" | 13 #include "ash/system/bluetooth/bluetooth_observer.h" |
14 #include "ash/system/chromeos/tray_tracing.h" | 14 #include "ash/system/chromeos/tray_tracing.h" |
15 #include "ash/system/date/clock_observer.h" | 15 #include "ash/system/date/clock_observer.h" |
16 #include "ash/system/drive/drive_observer.h" | 16 #include "ash/system/drive/drive_observer.h" |
17 #include "ash/system/ime/ime_observer.h" | 17 #include "ash/system/ime/ime_observer.h" |
18 #include "ash/system/locale/locale_observer.h" | 18 #include "ash/system/locale/locale_observer.h" |
19 #include "ash/system/logout_button/logout_button_observer.h" | 19 #include "ash/system/session/logout_button_observer.h" |
20 #include "ash/system/session_length_limit/session_length_limit_observer.h" | 20 #include "ash/system/session/session_length_limit_observer.h" |
21 #include "ash/system/tray_accessibility.h" | 21 #include "ash/system/tray_accessibility.h" |
22 #include "ash/system/tray_caps_lock.h" | 22 #include "ash/system/tray_caps_lock.h" |
23 #include "ash/system/user/update_observer.h" | 23 #include "ash/system/user/update_observer.h" |
24 #include "ash/system/user/user_observer.h" | 24 #include "ash/system/user/user_observer.h" |
25 #include "base/observer_list.h" | 25 #include "base/observer_list.h" |
26 #include "base/time/time.h" | 26 #include "base/time/time.h" |
27 | 27 |
28 #if defined(OS_CHROMEOS) | 28 #if defined(OS_CHROMEOS) |
29 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h" | 29 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h" |
30 #include "ash/system/chromeos/network/network_observer.h" | 30 #include "ash/system/chromeos/network/network_observer.h" |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 ObserverList<ScreenShareObserver> screen_share_observers_; | 168 ObserverList<ScreenShareObserver> screen_share_observers_; |
169 scoped_ptr<NetworkStateNotifier> network_state_notifier_; | 169 scoped_ptr<NetworkStateNotifier> network_state_notifier_; |
170 #endif | 170 #endif |
171 | 171 |
172 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); | 172 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); |
173 }; | 173 }; |
174 | 174 |
175 } // namespace ash | 175 } // namespace ash |
176 | 176 |
177 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 177 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
OLD | NEW |