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
28IMEInfo::IMEInfo()
29    : selected(false),
30      third_party(false) {
31}
32
33IMEInfo::~IMEInfo() {
34}
35
36IMEPropertyInfo::IMEPropertyInfo()
37    : selected(false) {
38}
39
40IMEPropertyInfo::~IMEPropertyInfo() {
41}
42
43}  // namespace ash
44