| 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/ime/input_method_menu_manager.h" | 10 #include "ash/ime/input_method_menu_manager.h" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 void ShowChromeSlow() override; | 90 void ShowChromeSlow() override; |
| 91 bool ShouldShowDisplayNotification() override; | 91 bool ShouldShowDisplayNotification() override; |
| 92 void ShowIMESettings() override; | 92 void ShowIMESettings() override; |
| 93 void ShowHelp() override; | 93 void ShowHelp() override; |
| 94 void ShowAccessibilityHelp() override; | 94 void ShowAccessibilityHelp() override; |
| 95 void ShowAccessibilitySettings() override; | 95 void ShowAccessibilitySettings() override; |
| 96 void ShowPublicAccountInfo() override; | 96 void ShowPublicAccountInfo() override; |
| 97 void ShowSupervisedUserInfo() override; | 97 void ShowSupervisedUserInfo() override; |
| 98 void ShowEnterpriseInfo() override; | 98 void ShowEnterpriseInfo() override; |
| 99 void ShowUserLogin() override; | 99 void ShowUserLogin() override; |
| 100 bool ShowSpringChargerReplacementDialog() override; | |
| 101 bool IsSpringChargerReplacementDialogVisible() override; | |
| 102 bool HasUserConfirmedSafeSpringCharger() override; | |
| 103 void ShutDown() override; | 100 void ShutDown() override; |
| 104 void SignOut() override; | 101 void SignOut() override; |
| 105 void RequestLockScreen() override; | 102 void RequestLockScreen() override; |
| 106 void RequestRestartForUpdate() override; | 103 void RequestRestartForUpdate() override; |
| 107 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; | 104 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; |
| 108 void BluetoothStartDiscovering() override; | 105 void BluetoothStartDiscovering() override; |
| 109 void BluetoothStopDiscovering() override; | 106 void BluetoothStopDiscovering() override; |
| 110 void ConnectToBluetoothDevice(const std::string& address) override; | 107 void ConnectToBluetoothDevice(const std::string& address) override; |
| 111 bool IsBluetoothDiscovering() override; | 108 bool IsBluetoothDiscovering() override; |
| 112 void GetCurrentIME(ash::IMEInfo* info) override; | 109 void GetCurrentIME(ash::IMEInfo* info) override; |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 278 |
| 282 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 279 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
| 283 | 280 |
| 284 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 281 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 285 }; | 282 }; |
| 286 | 283 |
| 287 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 284 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 288 | 285 |
| 289 } // namespace chromeos | 286 } // namespace chromeos |
| 290 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 287 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |