| 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 { |
| 11 | 11 |
| 12 NetworkIconInfo::NetworkIconInfo() | 12 NetworkIconInfo::NetworkIconInfo() |
| 13 : connecting(false), | 13 : connecting(false), |
| 14 connected(false), | 14 connected(false), |
| 15 tray_icon_visible(true), | 15 tray_icon_visible(true), |
| 16 is_cellular(false) {} | 16 is_cellular(false) {} |
| 17 | 17 |
| 18 NetworkIconInfo::~NetworkIconInfo() {} | 18 NetworkIconInfo::~NetworkIconInfo() {} |
| 19 | 19 |
| 20 BluetoothDeviceInfo::BluetoothDeviceInfo() | 20 BluetoothDeviceInfo::BluetoothDeviceInfo() |
| 21 : connected(false), connecting(false), paired(false) {} | 21 : connected(false), connecting(false), paired(false) {} |
| 22 | 22 |
| 23 BluetoothDeviceInfo::BluetoothDeviceInfo(const BluetoothDeviceInfo& other) = |
| 24 default; |
| 25 |
| 23 BluetoothDeviceInfo::~BluetoothDeviceInfo() {} | 26 BluetoothDeviceInfo::~BluetoothDeviceInfo() {} |
| 24 | 27 |
| 25 UpdateInfo::UpdateInfo() | 28 UpdateInfo::UpdateInfo() |
| 26 : severity(UPDATE_NONE), | 29 : severity(UPDATE_NONE), |
| 27 update_required(false), | 30 update_required(false), |
| 28 factory_reset_required(false) {} | 31 factory_reset_required(false) {} |
| 29 | 32 |
| 30 UpdateInfo::~UpdateInfo() {} | 33 UpdateInfo::~UpdateInfo() {} |
| 31 | 34 |
| 32 SystemTrayDelegate::SystemTrayDelegate() {} | 35 SystemTrayDelegate::SystemTrayDelegate() {} |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 227 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 225 return nullptr; | 228 return nullptr; |
| 226 } | 229 } |
| 227 | 230 |
| 228 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 231 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 229 SystemTray* tray) { | 232 SystemTray* tray) { |
| 230 return nullptr; | 233 return nullptr; |
| 231 } | 234 } |
| 232 | 235 |
| 233 } // namespace ash | 236 } // namespace ash |
| OLD | NEW |