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
3// found in the LICENSE file.
4
5#include "ash/system/tray/system_tray_delegate.h"
6
7namespace ash {
8
9NetworkIconInfo::NetworkIconInfo()
10    : connecting(false),
11      connected(false),
12      tray_icon_visible(true),
13      is_cellular(false) {
14}
15
16NetworkIconInfo::~NetworkIconInfo() {
17}
18
19BluetoothDeviceInfo::BluetoothDeviceInfo()
20    : connected(false),
21      connecting(false),
22      paired(false) {
23}
24
25BluetoothDeviceInfo::~BluetoothDeviceInfo() {
26}
27
28DriveOperationStatus::DriveOperationStatus()
29    : id(-1),
30      progress(0.0),
31      type(OPERATION_DOWNLOAD),
32      state(OPERATION_NOT_STARTED) {
33}
34
35DriveOperationStatus::~DriveOperationStatus() {
36}
37
38IMEInfo::IMEInfo()
39    : selected(false),
40      third_party(false) {
41}
42
43IMEInfo::~IMEInfo() {
44}
45
46IMEPropertyInfo::IMEPropertyInfo()
47    : selected(false) {
48}
49
50IMEPropertyInfo::~IMEPropertyInfo() {
51}
52
53}  // namespace ash
54