| Index: ash/common/system/tray/system_tray_delegate.cc
|
| diff --git a/ash/common/system/tray/system_tray_delegate.cc b/ash/common/system/tray/system_tray_delegate.cc
|
| index 2d8c24634629b1823e0a8ddff3faa3cf97c73ba2..9a853ae4027a75b6c6158f7dcdea1b8f2e061323 100644
|
| --- a/ash/common/system/tray/system_tray_delegate.cc
|
| +++ b/ash/common/system/tray/system_tray_delegate.cc
|
| @@ -9,14 +9,6 @@
|
|
|
| namespace ash {
|
|
|
| -BluetoothDeviceInfo::BluetoothDeviceInfo()
|
| - : connected(false), connecting(false), paired(false) {}
|
| -
|
| -BluetoothDeviceInfo::BluetoothDeviceInfo(const BluetoothDeviceInfo& other) =
|
| - default;
|
| -
|
| -BluetoothDeviceInfo::~BluetoothDeviceInfo() {}
|
| -
|
| SystemTrayDelegate::SystemTrayDelegate() {}
|
|
|
| SystemTrayDelegate::~SystemTrayDelegate() {}
|
| @@ -71,15 +63,6 @@ void SystemTrayDelegate::ShowEnterpriseInfo() {}
|
|
|
| void SystemTrayDelegate::ShowUserLogin() {}
|
|
|
| -void SystemTrayDelegate::GetAvailableBluetoothDevices(
|
| - BluetoothDeviceList* list) {}
|
| -
|
| -void SystemTrayDelegate::BluetoothStartDiscovering() {}
|
| -
|
| -void SystemTrayDelegate::BluetoothStopDiscovering() {}
|
| -
|
| -void SystemTrayDelegate::ConnectToBluetoothDevice(const std::string& address) {}
|
| -
|
| void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {}
|
|
|
| void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {}
|
| @@ -94,24 +77,6 @@ void SystemTrayDelegate::SwitchIME(const std::string& ime_id) {}
|
|
|
| void SystemTrayDelegate::ActivateIMEProperty(const std::string& key) {}
|
|
|
| -void SystemTrayDelegate::ToggleBluetooth() {}
|
| -
|
| -bool SystemTrayDelegate::IsBluetoothDiscovering() const {
|
| - return false;
|
| -}
|
| -
|
| -bool SystemTrayDelegate::GetBluetoothAvailable() {
|
| - return false;
|
| -}
|
| -
|
| -bool SystemTrayDelegate::GetBluetoothEnabled() {
|
| - return false;
|
| -}
|
| -
|
| -bool SystemTrayDelegate::GetBluetoothDiscovering() {
|
| - return false;
|
| -}
|
| -
|
| NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate()
|
| const {
|
| return nullptr;
|
|
|