| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} | 87 void SystemTrayDelegate::GetCurrentIMEProperties(IMEPropertyInfoList* list) {} |
| 88 | 88 |
| 89 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { | 89 base::string16 SystemTrayDelegate::GetIMEManagedMessage() { |
| 90 return base::string16(); | 90 return base::string16(); |
| 91 } | 91 } |
| 92 | 92 |
| 93 void SystemTrayDelegate::SwitchIME(const std::string& ime_id) {} | 93 void SystemTrayDelegate::SwitchIME(const std::string& ime_id) {} |
| 94 | 94 |
| 95 void SystemTrayDelegate::ActivateIMEProperty(const std::string& key) {} | 95 void SystemTrayDelegate::ActivateIMEProperty(const std::string& key) {} |
| 96 | 96 |
| 97 void SystemTrayDelegate::ManageBluetoothDevices() {} | |
| 98 | |
| 99 void SystemTrayDelegate::ToggleBluetooth() {} | 97 void SystemTrayDelegate::ToggleBluetooth() {} |
| 100 | 98 |
| 101 bool SystemTrayDelegate::IsBluetoothDiscovering() const { | 99 bool SystemTrayDelegate::IsBluetoothDiscovering() const { |
| 102 return false; | 100 return false; |
| 103 } | 101 } |
| 104 | 102 |
| 105 bool SystemTrayDelegate::GetBluetoothAvailable() { | 103 bool SystemTrayDelegate::GetBluetoothAvailable() { |
| 106 return false; | 104 return false; |
| 107 } | 105 } |
| 108 | 106 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 142 |
| 145 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 143 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
| 146 CustodianInfoTrayObserver* observer) {} | 144 CustodianInfoTrayObserver* observer) {} |
| 147 | 145 |
| 148 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 146 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 149 SystemTray* tray) { | 147 SystemTray* tray) { |
| 150 return nullptr; | 148 return nullptr; |
| 151 } | 149 } |
| 152 | 150 |
| 153 } // namespace ash | 151 } // namespace ash |
| OLD | NEW |