| 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 namespace ash { | 7 namespace ash { |
| 8 | 8 |
| 9 NetworkIconInfo::NetworkIconInfo() | 9 NetworkIconInfo::NetworkIconInfo() |
| 10 : connecting(false), | 10 : connecting(false), |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 161 |
| 162 void SystemTrayDelegate::SignOut() { | 162 void SystemTrayDelegate::SignOut() { |
| 163 } | 163 } |
| 164 | 164 |
| 165 void SystemTrayDelegate::RequestLockScreen() { | 165 void SystemTrayDelegate::RequestLockScreen() { |
| 166 } | 166 } |
| 167 | 167 |
| 168 void SystemTrayDelegate::RequestRestartForUpdate() { | 168 void SystemTrayDelegate::RequestRestartForUpdate() { |
| 169 } | 169 } |
| 170 | 170 |
| 171 void SystemTrayDelegate::RequestShutdown() {} |
| 172 |
| 171 void SystemTrayDelegate::GetAvailableBluetoothDevices( | 173 void SystemTrayDelegate::GetAvailableBluetoothDevices( |
| 172 BluetoothDeviceList* list) { | 174 BluetoothDeviceList* list) { |
| 173 } | 175 } |
| 174 | 176 |
| 175 void SystemTrayDelegate::BluetoothStartDiscovering() { | 177 void SystemTrayDelegate::BluetoothStartDiscovering() { |
| 176 } | 178 } |
| 177 | 179 |
| 178 void SystemTrayDelegate::BluetoothStopDiscovering() { | 180 void SystemTrayDelegate::BluetoothStopDiscovering() { |
| 179 } | 181 } |
| 180 | 182 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 | 281 |
| 280 void SystemTrayDelegate::ShouldRebootOnShutdown( | 282 void SystemTrayDelegate::ShouldRebootOnShutdown( |
| 281 const RebootOnShutdownCallback& callback) { | 283 const RebootOnShutdownCallback& callback) { |
| 282 } | 284 } |
| 283 | 285 |
| 284 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 286 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 285 return nullptr; | 287 return nullptr; |
| 286 } | 288 } |
| 287 | 289 |
| 288 } // namespace ash | 290 } // namespace ash |
| OLD | NEW |