| 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/system/user/user_observer.h" | 14 #include "ash/common/system/user/user_observer.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 17 | 17 |
| 18 #if defined(OS_CHROMEOS) | 18 #if defined(OS_CHROMEOS) |
| 19 #include "ash/system/chromeos/bluetooth/bluetooth_observer.h" | 19 #include "ash/system/chromeos/bluetooth/bluetooth_observer.h" |
| 20 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h" | 20 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h" |
| 21 #include "ash/system/chromeos/network/network_observer.h" | 21 #include "ash/system/chromeos/network/network_observer.h" |
| 22 #include "ash/system/chromeos/network/network_portal_detector_observer.h" | 22 #include "ash/system/chromeos/network/network_portal_detector_observer.h" |
| 23 #include "ash/system/chromeos/screen_security/screen_capture_observer.h" | 23 #include "ash/system/chromeos/screen_security/screen_capture_observer.h" |
| 24 #include "ash/system/chromeos/screen_security/screen_share_observer.h" | 24 #include "ash/system/chromeos/screen_security/screen_share_observer.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 base::ObserverList<ScreenShareObserver> screen_share_observers_; | 115 base::ObserverList<ScreenShareObserver> screen_share_observers_; |
| 116 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; | 116 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; |
| 117 #endif | 117 #endif |
| 118 | 118 |
| 119 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); | 119 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 } // namespace ash | 122 } // namespace ash |
| 123 | 123 |
| 124 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ | 124 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ |
| OLD | NEW |