| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 public: | 44 public: |
| 45 SystemTrayDelegateChromeOS(); | 45 SystemTrayDelegateChromeOS(); |
| 46 ~SystemTrayDelegateChromeOS() override; | 46 ~SystemTrayDelegateChromeOS() override; |
| 47 | 47 |
| 48 // Overridden from ash::SystemTrayDelegate: | 48 // Overridden from ash::SystemTrayDelegate: |
| 49 void Initialize() override; | 49 void Initialize() override; |
| 50 void ShowUserLogin() override; | 50 void ShowUserLogin() override; |
| 51 void GetCurrentIME(ash::IMEInfo* info) override; | 51 void GetCurrentIME(ash::IMEInfo* info) override; |
| 52 void GetAvailableIMEList(ash::IMEInfoList* list) override; | 52 void GetAvailableIMEList(ash::IMEInfoList* list) override; |
| 53 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; | 53 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; |
| 54 base::string16 GetIMEManagedMessage() override; | |
| 55 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override; | 54 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override; |
| 56 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; | 55 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; |
| 57 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override; | 56 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override; |
| 58 void ActiveUserWasChanged() override; | 57 void ActiveUserWasChanged() override; |
| 59 bool IsSearchKeyMappedToCapsLock() override; | 58 bool IsSearchKeyMappedToCapsLock() override; |
| 60 | 59 |
| 61 private: | 60 private: |
| 62 ash::SystemTrayNotifier* GetSystemTrayNotifier(); | 61 ash::SystemTrayNotifier* GetSystemTrayNotifier(); |
| 63 | 62 |
| 64 void SetProfile(Profile* profile); | 63 void SetProfile(Profile* profile); |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 std::unique_ptr<AccessibilityStatusSubscription> accessibility_subscription_; | 131 std::unique_ptr<AccessibilityStatusSubscription> accessibility_subscription_; |
| 133 | 132 |
| 134 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 133 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 135 }; | 134 }; |
| 136 | 135 |
| 137 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 136 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 138 | 137 |
| 139 } // namespace chromeos | 138 } // namespace chromeos |
| 140 | 139 |
| 141 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 140 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |