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