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/system/tray/system_tray_delegate.h" | 5 #include "ash/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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 return false; | 216 return false; |
217 } | 217 } |
218 | 218 |
219 bool SystemTrayDelegate::GetBluetoothDiscovering() { | 219 bool SystemTrayDelegate::GetBluetoothDiscovering() { |
220 return false; | 220 return false; |
221 } | 221 } |
222 | 222 |
223 void SystemTrayDelegate::ChangeProxySettings() { | 223 void SystemTrayDelegate::ChangeProxySettings() { |
224 } | 224 } |
225 | 225 |
| 226 CastConfigDelegate* SystemTrayDelegate::GetCastConfigDelegate() const { |
| 227 return nullptr; |
| 228 } |
| 229 |
226 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() | 230 NetworkingConfigDelegate* SystemTrayDelegate::GetNetworkingConfigDelegate() |
227 const { | 231 const { |
228 return nullptr; | 232 return nullptr; |
229 } | 233 } |
230 | 234 |
231 VolumeControlDelegate* SystemTrayDelegate::GetVolumeControlDelegate() const { | 235 VolumeControlDelegate* SystemTrayDelegate::GetVolumeControlDelegate() const { |
232 return nullptr; | 236 return nullptr; |
233 } | 237 } |
234 | 238 |
235 void SystemTrayDelegate::SetVolumeControlDelegate( | 239 void SystemTrayDelegate::SetVolumeControlDelegate( |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 | 284 |
281 void SystemTrayDelegate::ShouldRebootOnShutdown( | 285 void SystemTrayDelegate::ShouldRebootOnShutdown( |
282 const RebootOnShutdownCallback& callback) { | 286 const RebootOnShutdownCallback& callback) { |
283 } | 287 } |
284 | 288 |
285 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 289 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
286 return nullptr; | 290 return nullptr; |
287 } | 291 } |
288 | 292 |
289 } // namespace ash | 293 } // namespace ash |
OLD | NEW |