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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 193 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
191 return nullptr; | 194 return nullptr; |
192 } | 195 } |
193 | 196 |
194 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 197 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
195 SystemTray* tray) { | 198 SystemTray* tray) { |
196 return nullptr; | 199 return nullptr; |
197 } | 200 } |
198 | 201 |
199 } // namespace ash | 202 } // namespace ash |
OLD | NEW |