| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 } | 77 } |
| 78 | 78 |
| 79 bool SystemTrayDelegate::ShouldShowNotificationTray() const { | 79 bool SystemTrayDelegate::ShouldShowNotificationTray() const { |
| 80 return false; | 80 return false; |
| 81 } | 81 } |
| 82 | 82 |
| 83 void SystemTrayDelegate::ShowEnterpriseInfo() {} | 83 void SystemTrayDelegate::ShowEnterpriseInfo() {} |
| 84 | 84 |
| 85 void SystemTrayDelegate::ShowUserLogin() {} | 85 void SystemTrayDelegate::ShowUserLogin() {} |
| 86 | 86 |
| 87 void SystemTrayDelegate::SignOut() {} | |
| 88 | |
| 89 void SystemTrayDelegate::RequestRestartForUpdate() {} | |
| 90 | |
| 91 void SystemTrayDelegate::GetAvailableBluetoothDevices( | 87 void SystemTrayDelegate::GetAvailableBluetoothDevices( |
| 92 BluetoothDeviceList* list) {} | 88 BluetoothDeviceList* list) {} |
| 93 | 89 |
| 94 void SystemTrayDelegate::BluetoothStartDiscovering() {} | 90 void SystemTrayDelegate::BluetoothStartDiscovering() {} |
| 95 | 91 |
| 96 void SystemTrayDelegate::BluetoothStopDiscovering() {} | 92 void SystemTrayDelegate::BluetoothStopDiscovering() {} |
| 97 | 93 |
| 98 void SystemTrayDelegate::ConnectToBluetoothDevice(const std::string& address) {} | 94 void SystemTrayDelegate::ConnectToBluetoothDevice(const std::string& address) {} |
| 99 | 95 |
| 100 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} | 96 void SystemTrayDelegate::GetCurrentIME(IMEInfo* info) {} |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 161 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 166 return nullptr; | 162 return nullptr; |
| 167 } | 163 } |
| 168 | 164 |
| 169 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 165 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 170 SystemTray* tray) { | 166 SystemTray* tray) { |
| 171 return nullptr; | 167 return nullptr; |
| 172 } | 168 } |
| 173 | 169 |
| 174 } // namespace ash | 170 } // namespace ash |
| OLD | NEW |