| 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> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 // Overridden from ash::SystemTrayDelegate: | 53 // Overridden from ash::SystemTrayDelegate: |
| 54 void Initialize() override; | 54 void Initialize() override; |
| 55 ash::LoginStatus GetUserLoginStatus() const override; | 55 ash::LoginStatus GetUserLoginStatus() const override; |
| 56 std::string GetEnterpriseDomain() const override; | 56 std::string GetEnterpriseDomain() const override; |
| 57 base::string16 GetEnterpriseMessage() const override; | 57 base::string16 GetEnterpriseMessage() const override; |
| 58 std::string GetSupervisedUserManager() const override; | 58 std::string GetSupervisedUserManager() const override; |
| 59 base::string16 GetSupervisedUserManagerName() const override; | 59 base::string16 GetSupervisedUserManagerName() const override; |
| 60 base::string16 GetSupervisedUserMessage() const override; | 60 base::string16 GetSupervisedUserMessage() const override; |
| 61 bool IsUserSupervised() const override; | 61 bool IsUserSupervised() const override; |
| 62 bool IsUserChild() const override; | 62 bool IsUserChild() const override; |
| 63 bool ShouldShowSettings() const override; | |
| 64 bool ShouldShowNotificationTray() const override; | |
| 65 void ShowEnterpriseInfo() override; | 63 void ShowEnterpriseInfo() override; |
| 66 void ShowUserLogin() override; | 64 void ShowUserLogin() override; |
| 67 void GetCurrentIME(ash::IMEInfo* info) override; | 65 void GetCurrentIME(ash::IMEInfo* info) override; |
| 68 void GetAvailableIMEList(ash::IMEInfoList* list) override; | 66 void GetAvailableIMEList(ash::IMEInfoList* list) override; |
| 69 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; | 67 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; |
| 70 base::string16 GetIMEManagedMessage() override; | 68 base::string16 GetIMEManagedMessage() override; |
| 71 void SwitchIME(const std::string& ime_id) override; | 69 void SwitchIME(const std::string& ime_id) override; |
| 72 void ActivateIMEProperty(const std::string& key) override; | 70 void ActivateIMEProperty(const std::string& key) override; |
| 73 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override; | 71 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override; |
| 74 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; | 72 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 custodian_info_changed_observers_; | 174 custodian_info_changed_observers_; |
| 177 | 175 |
| 178 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 176 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 179 }; | 177 }; |
| 180 | 178 |
| 181 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 179 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 182 | 180 |
| 183 } // namespace chromeos | 181 } // namespace chromeos |
| 184 | 182 |
| 185 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 183 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |