| 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 <string> | 10 #include <string> |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 void ShowSetTimeDialog() override; | 100 void ShowSetTimeDialog() override; |
| 101 void ShowNetworkSettingsForGuid(const std::string& guid) override; | 101 void ShowNetworkSettingsForGuid(const std::string& guid) override; |
| 102 void ShowDisplaySettings() override; | 102 void ShowDisplaySettings() override; |
| 103 void ShowPowerSettings() override; | 103 void ShowPowerSettings() override; |
| 104 void ShowChromeSlow() override; | 104 void ShowChromeSlow() override; |
| 105 bool ShouldShowDisplayNotification() override; | 105 bool ShouldShowDisplayNotification() override; |
| 106 void ShowIMESettings() override; | 106 void ShowIMESettings() override; |
| 107 void ShowHelp() override; | 107 void ShowHelp() override; |
| 108 void ShowAccessibilityHelp() override; | 108 void ShowAccessibilityHelp() override; |
| 109 void ShowAccessibilitySettings() override; | 109 void ShowAccessibilitySettings() override; |
| 110 void ShowPaletteHelp() override; |
| 111 void ShowPaletteSettings() override; |
| 110 void ShowPublicAccountInfo() override; | 112 void ShowPublicAccountInfo() override; |
| 111 void ShowSupervisedUserInfo() override; | 113 void ShowSupervisedUserInfo() override; |
| 112 void ShowEnterpriseInfo() override; | 114 void ShowEnterpriseInfo() override; |
| 113 void ShowUserLogin() override; | 115 void ShowUserLogin() override; |
| 114 void SignOut() override; | 116 void SignOut() override; |
| 115 void RequestRestartForUpdate() override; | 117 void RequestRestartForUpdate() override; |
| 116 void RequestShutdown() override; | 118 void RequestShutdown() override; |
| 117 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; | 119 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; |
| 118 void BluetoothStartDiscovering() override; | 120 void BluetoothStartDiscovering() override; |
| 119 void BluetoothStopDiscovering() override; | 121 void BluetoothStopDiscovering() override; |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 | 320 |
| 319 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 321 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
| 320 | 322 |
| 321 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 323 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 322 }; | 324 }; |
| 323 | 325 |
| 324 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 326 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 325 | 327 |
| 326 } // namespace chromeos | 328 } // namespace chromeos |
| 327 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 329 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |