| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/session/session_state_observer.h" | 10 #include "ash/session/session_state_observer.h" |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 void ShowChromeSlow() override; | 91 void ShowChromeSlow() override; |
| 92 bool ShouldShowDisplayNotification() override; | 92 bool ShouldShowDisplayNotification() override; |
| 93 void ShowIMESettings() override; | 93 void ShowIMESettings() override; |
| 94 void ShowHelp() override; | 94 void ShowHelp() override; |
| 95 void ShowAccessibilityHelp() override; | 95 void ShowAccessibilityHelp() override; |
| 96 void ShowAccessibilitySettings() override; | 96 void ShowAccessibilitySettings() override; |
| 97 void ShowPublicAccountInfo() override; | 97 void ShowPublicAccountInfo() override; |
| 98 void ShowSupervisedUserInfo() override; | 98 void ShowSupervisedUserInfo() override; |
| 99 void ShowEnterpriseInfo() override; | 99 void ShowEnterpriseInfo() override; |
| 100 void ShowUserLogin() override; | 100 void ShowUserLogin() override; |
| 101 void ShutDown() override; | |
| 102 void SignOut() override; | 101 void SignOut() override; |
| 103 void RequestLockScreen() override; | 102 void RequestLockScreen() override; |
| 104 void RequestRestartForUpdate() override; | 103 void RequestRestartForUpdate() override; |
| 105 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; | 104 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; |
| 106 void BluetoothStartDiscovering() override; | 105 void BluetoothStartDiscovering() override; |
| 107 void BluetoothStopDiscovering() override; | 106 void BluetoothStopDiscovering() override; |
| 108 void ConnectToBluetoothDevice(const std::string& address) override; | 107 void ConnectToBluetoothDevice(const std::string& address) override; |
| 109 bool IsBluetoothDiscovering() override; | 108 bool IsBluetoothDiscovering() override; |
| 110 void GetCurrentIME(ash::IMEInfo* info) override; | 109 void GetCurrentIME(ash::IMEInfo* info) override; |
| 111 void GetAvailableIMEList(ash::IMEInfoList* list) override; | 110 void GetAvailableIMEList(ash::IMEInfoList* list) override; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 | 284 |
| 286 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 285 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
| 287 | 286 |
| 288 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 287 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 289 }; | 288 }; |
| 290 | 289 |
| 291 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 290 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 292 | 291 |
| 293 } // namespace chromeos | 292 } // namespace chromeos |
| 294 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 293 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |