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), |
11 connected(false), | 11 connected(false), |
12 tray_icon_visible(true), | 12 tray_icon_visible(true), |
13 is_cellular(false) { | 13 is_cellular(false) { |
14 } | 14 } |
15 | 15 |
16 NetworkIconInfo::~NetworkIconInfo() { | 16 NetworkIconInfo::~NetworkIconInfo() { |
17 } | 17 } |
18 | 18 |
19 BluetoothDeviceInfo::BluetoothDeviceInfo() | 19 BluetoothDeviceInfo::BluetoothDeviceInfo() |
20 : connected(false), | 20 : connected(false), |
21 connecting(false), | 21 connecting(false), |
22 paired(false) { | 22 paired(false) { |
23 } | 23 } |
24 | 24 |
25 BluetoothDeviceInfo::~BluetoothDeviceInfo() { | 25 BluetoothDeviceInfo::~BluetoothDeviceInfo() { |
26 } | 26 } |
27 | 27 |
28 DriveOperationStatus::DriveOperationStatus() | |
29 : id(-1), | |
30 progress(0.0), | |
31 type(OPERATION_DOWNLOAD), | |
32 state(OPERATION_NOT_STARTED) { | |
33 } | |
34 | |
35 DriveOperationStatus::~DriveOperationStatus() { | |
36 } | |
37 | |
38 IMEInfo::IMEInfo() | 28 IMEInfo::IMEInfo() |
39 : selected(false), | 29 : selected(false), |
40 third_party(false) { | 30 third_party(false) { |
41 } | 31 } |
42 | 32 |
43 IMEInfo::~IMEInfo() { | 33 IMEInfo::~IMEInfo() { |
44 } | 34 } |
45 | 35 |
46 IMEPropertyInfo::IMEPropertyInfo() | 36 IMEPropertyInfo::IMEPropertyInfo() |
47 : selected(false) { | 37 : selected(false) { |
48 } | 38 } |
49 | 39 |
50 IMEPropertyInfo::~IMEPropertyInfo() { | 40 IMEPropertyInfo::~IMEPropertyInfo() { |
51 } | 41 } |
52 | 42 |
53 } // namespace ash | 43 } // namespace ash |
OLD | NEW |