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> |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 75 |
76 ~SystemTrayDelegateChromeOS() override; | 76 ~SystemTrayDelegateChromeOS() override; |
77 | 77 |
78 void InitializeOnAdapterReady( | 78 void InitializeOnAdapterReady( |
79 scoped_refptr<device::BluetoothAdapter> adapter); | 79 scoped_refptr<device::BluetoothAdapter> adapter); |
80 | 80 |
81 // Overridden from ash::SystemTrayDelegate: | 81 // Overridden from ash::SystemTrayDelegate: |
82 void Initialize() override; | 82 void Initialize() override; |
83 void Shutdown() override; | 83 void Shutdown() override; |
84 bool GetTrayVisibilityOnStartup() override; | 84 bool GetTrayVisibilityOnStartup() override; |
85 ash::user::LoginStatus GetUserLoginStatus() const override; | 85 ash::LoginStatus GetUserLoginStatus() const override; |
86 void ChangeProfilePicture() override; | 86 void ChangeProfilePicture() override; |
87 std::string GetEnterpriseDomain() const override; | 87 std::string GetEnterpriseDomain() const override; |
88 base::string16 GetEnterpriseMessage() const override; | 88 base::string16 GetEnterpriseMessage() const override; |
89 std::string GetSupervisedUserManager() const override; | 89 std::string GetSupervisedUserManager() const override; |
90 base::string16 GetSupervisedUserManagerName() const override; | 90 base::string16 GetSupervisedUserManagerName() const override; |
91 base::string16 GetSupervisedUserMessage() const override; | 91 base::string16 GetSupervisedUserMessage() const override; |
92 bool IsUserSupervised() const override; | 92 bool IsUserSupervised() const override; |
93 bool IsUserChild() const override; | 93 bool IsUserChild() const override; |
94 void GetSystemUpdateInfo(ash::UpdateInfo* info) const override; | 94 void GetSystemUpdateInfo(ash::UpdateInfo* info) const override; |
95 base::HourClockType GetHourClockType() const override; | 95 base::HourClockType GetHourClockType() const override; |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 | 314 |
315 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 315 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
316 | 316 |
317 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 317 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
318 }; | 318 }; |
319 | 319 |
320 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 320 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
321 | 321 |
322 } // namespace chromeos | 322 } // namespace chromeos |
323 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 323 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
OLD | NEW |