| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "ash/common/system/tray/system_tray_delegate.h" | 5 #include "ash/common/system/tray/system_tray_delegate.h" |
| 6 | 6 |
| 7 #include "ash/common/system/tray/ime_info.h" | 7 #include "ash/common/system/tray/ime_info.h" |
| 8 #include "ash/common/system/tray/system_tray_item.h" | 8 #include "ash/common/system/tray/system_tray_item.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 void SystemTrayDelegate::BluetoothStopDiscovering() {} | 79 void SystemTrayDelegate::BluetoothStopDiscovering() {} |
| 80 | 80 |
| 81 void SystemTrayDelegate::ConnectToBluetoothDevice(const std::string& address) {} | 81 void SystemTrayDelegate::ConnectToBluetoothDevice(const std::string& address) {} |
| 82 | 82 |
| 83 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} | 83 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} |
| 84 | 84 |
| 85 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} | 85 void SystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) {} |
| 86 | 86 |
| 87 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} | 87 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} |
| 88 | 88 |
| 89 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { |
| 90 return base::string16(); |
| 91 } |
| 92 |
| 89 void SystemTrayDelegate::SwitchIME(const std::string& ime_id) {} | 93 void SystemTrayDelegate::SwitchIME(const std::string& ime_id) {} |
| 90 | 94 |
| 91 void SystemTrayDelegate::ActivateIMEProperty(const std::string& key) {} | 95 void SystemTrayDelegate::ActivateIMEProperty(const std::string& key) {} |
| 92 | 96 |
| 93 void SystemTrayDelegate::ManageBluetoothDevices() {} | 97 void SystemTrayDelegate::ManageBluetoothDevices() {} |
| 94 | 98 |
| 95 void SystemTrayDelegate::ToggleBluetooth() {} | 99 void SystemTrayDelegate::ToggleBluetooth() {} |
| 96 | 100 |
| 97 bool SystemTrayDelegate::IsBluetoothDiscovering() const { | 101 bool SystemTrayDelegate::IsBluetoothDiscovering() const { |
| 98 return false; | 102 return false; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 144 |
| 141 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 145 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| 142 CustodianInfoTrayObserver* observer) {} | 146 CustodianInfoTrayObserver* observer) {} |
| 143 | 147 |
| 144 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 148 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 145 SystemTray* tray) { | 149 SystemTray* tray) { |
| 146 return nullptr; | 150 return nullptr; |
| 147 } | 151 } |
| 148 | 152 |
| 149 } // namespace ash | 153 } // namespace ash |
| OLD | NEW |