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