| 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 <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "ash/common/accessibility_types.h" | 14 #include "ash/accessibility_types.h" |
| 15 #include "ash/common/system/chromeos/supervised/custodian_info_tray_observer.h" | 15 #include "ash/system/supervised/custodian_info_tray_observer.h" |
| 16 #include "ash/common/system/tray/ime_info.h" | 16 #include "ash/system/tray/ime_info.h" |
| 17 #include "ash/common/system/tray/system_tray_delegate.h" | 17 #include "ash/system/tray/system_tray_delegate.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/profiles/profile.h" | 26 #include "chrome/browser/profiles/profile.h" |
| 27 #include "chrome/browser/supervised_user/supervised_user_service_observer.h" | 27 #include "chrome/browser/supervised_user/supervised_user_service_observer.h" |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 245 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
| 246 | 246 |
| 247 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 247 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 248 }; | 248 }; |
| 249 | 249 |
| 250 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 250 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 251 | 251 |
| 252 } // namespace chromeos | 252 } // namespace chromeos |
| 253 | 253 |
| 254 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 254 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |