OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_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/common/accessibility_types.h" | 13 #include "ash/common/accessibility_types.h" |
14 #include "ash/common/session/session_state_observer.h" | 14 #include "ash/common/session/session_state_observer.h" |
15 #include "ash/common/system/chromeos/supervised/custodian_info_tray_observer.h" | 15 #include "ash/common/system/chromeos/supervised/custodian_info_tray_observer.h" |
| 16 #include "ash/common/system/tray/system_tray.h" |
16 #include "ash/common/system/tray/system_tray_delegate.h" | 17 #include "ash/common/system/tray/system_tray_delegate.h" |
17 #include "ash/system/tray/system_tray.h" | |
18 #include "base/callback_forward.h" | 18 #include "base/callback_forward.h" |
19 #include "base/callback_list.h" | 19 #include "base/callback_list.h" |
20 #include "base/compiler_specific.h" | 20 #include "base/compiler_specific.h" |
21 #include "base/macros.h" | 21 #include "base/macros.h" |
22 #include "base/memory/ref_counted.h" | 22 #include "base/memory/ref_counted.h" |
23 #include "base/memory/weak_ptr.h" | 23 #include "base/memory/weak_ptr.h" |
24 #include "base/observer_list.h" | 24 #include "base/observer_list.h" |
25 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 25 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
26 #include "chrome/browser/chromeos/settings/shutdown_policy_handler.h" | 26 #include "chrome/browser/chromeos/settings/shutdown_policy_handler.h" |
27 #include "chrome/browser/chromeos/system/system_clock.h" | 27 #include "chrome/browser/chromeos/system/system_clock.h" |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 | 318 |
319 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 319 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
320 | 320 |
321 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 321 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
322 }; | 322 }; |
323 | 323 |
324 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 324 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
325 | 325 |
326 } // namespace chromeos | 326 } // namespace chromeos |
327 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 327 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
OLD | NEW |