Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Side by Side Diff: chrome/browser/ui/ash/system_tray_delegate_chromeos.h

Issue 2652793003: Add login screen locale and input method device policies (Closed)
Patch Set: Rebase. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 void ShowEnterpriseInfo() override; 87 void ShowEnterpriseInfo() override;
88 void ShowUserLogin() override; 88 void ShowUserLogin() override;
89 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; 89 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override;
90 void BluetoothStartDiscovering() override; 90 void BluetoothStartDiscovering() override;
91 void BluetoothStopDiscovering() override; 91 void BluetoothStopDiscovering() override;
92 void ConnectToBluetoothDevice(const std::string& address) override; 92 void ConnectToBluetoothDevice(const std::string& address) override;
93 bool IsBluetoothDiscovering() const override; 93 bool IsBluetoothDiscovering() const override;
94 void GetCurrentIME(ash::IMEInfo* info) override; 94 void GetCurrentIME(ash::IMEInfo* info) override;
95 void GetAvailableIMEList(ash::IMEInfoList* list) override; 95 void GetAvailableIMEList(ash::IMEInfoList* list) override;
96 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override; 96 void GetCurrentIMEProperties(ash::IMEPropertyInfoList* list) override;
97 base::string16 GetIMEManagedMessage() override;
97 void SwitchIME(const std::string& ime_id) override; 98 void SwitchIME(const std::string& ime_id) override;
98 void ActivateIMEProperty(const std::string& key) override; 99 void ActivateIMEProperty(const std::string& key) override;
99 void ManageBluetoothDevices() override; 100 void ManageBluetoothDevices() override;
100 void ToggleBluetooth() override; 101 void ToggleBluetooth() override;
101 bool GetBluetoothAvailable() override; 102 bool GetBluetoothAvailable() override;
102 bool GetBluetoothEnabled() override; 103 bool GetBluetoothEnabled() override;
103 bool GetBluetoothDiscovering() override; 104 bool GetBluetoothDiscovering() override;
104 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override; 105 ash::NetworkingConfigDelegate* GetNetworkingConfigDelegate() const override;
105 bool GetSessionStartTime(base::TimeTicks* session_start_time) override; 106 bool GetSessionStartTime(base::TimeTicks* session_start_time) override;
106 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override; 107 bool GetSessionLengthLimit(base::TimeDelta* session_length_limit) override;
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; 245 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_;
245 246
246 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); 247 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS);
247 }; 248 };
248 249
249 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); 250 ash::SystemTrayDelegate* CreateSystemTrayDelegate();
250 251
251 } // namespace chromeos 252 } // namespace chromeos
252 253
253 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ 254 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698