| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 void BluetoothStartDiscovering() override; | 82 void BluetoothStartDiscovering() override; |
| 83 void BluetoothStopDiscovering() override; | 83 void BluetoothStopDiscovering() override; |
| 84 void ConnectToBluetoothDevice(const std::string& address) override; | 84 void ConnectToBluetoothDevice(const std::string& address) override; |
| 85 bool IsBluetoothDiscovering() const override; | 85 bool IsBluetoothDiscovering() const override; |
| 86 void GetCurrentIME(ash::IMEInfo* info) override; | 86 void GetCurrentIME(ash::IMEInfo* info) override; |
| 87 void GetAvailableIMEList(ash::IMEInfoList* list) override; | 87 void GetAvailableIMEList(ash::IMEInfoList* list) override; |
| 88 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; | 88 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; |
| 89 base::string16 GetIMEManagedMessage() override; | 89 base::string16 GetIMEManagedMessage() override; |
| 90 void SwitchIME(const std::string& ime_id) override; | 90 void SwitchIME(const std::string& ime_id) override; |
| 91 void ActivateIMEProperty(const std::string& key) override; | 91 void ActivateIMEProperty(const std::string& key) override; |
| 92 void ManageBluetoothDevices() override; | |
| 93 void ToggleBluetooth() override; | 92 void ToggleBluetooth() override; |
| 94 bool GetBluetoothAvailable() override; | 93 bool GetBluetoothAvailable() override; |
| 95 bool GetBluetoothEnabled() override; | 94 bool GetBluetoothEnabled() override; |
| 96 bool GetBluetoothDiscovering() override; | 95 bool GetBluetoothDiscovering() override; |
| 97 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override; | 96 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override; |
| 98 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; | 97 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; |
| 99 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override; | 98 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override; |
| 100 int GetSystemTrayMenuWidth() override; | 99 int GetSystemTrayMenuWidth() override; |
| 101 void ActiveUserWasChanged() override; | 100 void ActiveUserWasChanged() override; |
| 102 bool IsSearchKeyMappedToCapsLock() override; | 101 bool IsSearchKeyMappedToCapsLock() override; |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 custodian_info_changed_observers_; | 216 custodian_info_changed_observers_; |
| 218 | 217 |
| 219 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 218 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 220 }; | 219 }; |
| 221 | 220 |
| 222 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 221 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 223 | 222 |
| 224 } // namespace chromeos | 223 } // namespace chromeos |
| 225 | 224 |
| 226 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 225 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |