| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_COMMON_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ | 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/system/tray/system_tray_delegate.h" | 10 #include "ash/system/tray/system_tray_delegate.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 void ShowChromeSlow() override; | 51 void ShowChromeSlow() override; |
| 52 bool ShouldShowDisplayNotification() override; | 52 bool ShouldShowDisplayNotification() override; |
| 53 void ShowIMESettings() override; | 53 void ShowIMESettings() override; |
| 54 void ShowHelp() override; | 54 void ShowHelp() override; |
| 55 void ShowAccessibilityHelp() override; | 55 void ShowAccessibilityHelp() override; |
| 56 void ShowAccessibilitySettings() override; | 56 void ShowAccessibilitySettings() override; |
| 57 void ShowPublicAccountInfo() override; | 57 void ShowPublicAccountInfo() override; |
| 58 void ShowSupervisedUserInfo() override; | 58 void ShowSupervisedUserInfo() override; |
| 59 void ShowEnterpriseInfo() override; | 59 void ShowEnterpriseInfo() override; |
| 60 void ShowUserLogin() override; | 60 void ShowUserLogin() override; |
| 61 bool ShowSpringChargerReplacementDialog() override; | |
| 62 bool IsSpringChargerReplacementDialogVisible() override; | |
| 63 bool HasUserConfirmedSafeSpringCharger() override; | |
| 64 void ShutDown() override; | 61 void ShutDown() override; |
| 65 void SignOut() override; | 62 void SignOut() override; |
| 66 void RequestLockScreen() override; | 63 void RequestLockScreen() override; |
| 67 void RequestRestartForUpdate() override; | 64 void RequestRestartForUpdate() override; |
| 68 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; | 65 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; |
| 69 void BluetoothStartDiscovering() override; | 66 void BluetoothStartDiscovering() override; |
| 70 void BluetoothStopDiscovering() override; | 67 void BluetoothStopDiscovering() override; |
| 71 void ConnectToBluetoothDevice(const std::string& address) override; | 68 void ConnectToBluetoothDevice(const std::string& address) override; |
| 72 bool IsBluetoothDiscovering() override; | 69 bool IsBluetoothDiscovering() override; |
| 73 void GetCurrentIME(ash::IMEInfo* info) override; | 70 void GetCurrentIME(ash::IMEInfo* info) override; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 const content::NotificationSource& source, | 104 const content::NotificationSource& source, |
| 108 const content::NotificationDetails& details) override; | 105 const content::NotificationDetails& details) override; |
| 109 | 106 |
| 110 scoped_ptr<content::NotificationRegistrar> registrar_; | 107 scoped_ptr<content::NotificationRegistrar> registrar_; |
| 111 base::HourClockType clock_type_; | 108 base::HourClockType clock_type_; |
| 112 | 109 |
| 113 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateCommon); | 110 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateCommon); |
| 114 }; | 111 }; |
| 115 | 112 |
| 116 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ | 113 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_COMMON_H_ |
| OLD | NEW |