OLD | NEW |
(Empty) | |
| 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 |
| 9 NetworkIconInfo::NetworkIconInfo() |
| 10 : highlight(false), |
| 11 tray_icon_visible(true) { |
| 12 } |
| 13 |
| 14 NetworkIconInfo::~NetworkIconInfo() { |
| 15 } |
| 16 |
| 17 BluetoothDeviceInfo::BluetoothDeviceInfo() |
| 18 : connected(false) { |
| 19 } |
| 20 |
| 21 BluetoothDeviceInfo::~BluetoothDeviceInfo() { |
| 22 } |
| 23 |
| 24 DriveOperationStatus::DriveOperationStatus() |
| 25 : progress(0.0), type(OPERATION_OTHER), state(OPERATION_NOT_STARTED) { |
| 26 } |
| 27 |
| 28 DriveOperationStatus::~DriveOperationStatus() { |
| 29 } |
| 30 |
| 31 IMEInfo::IMEInfo() |
| 32 : selected(false) { |
| 33 } |
| 34 |
| 35 IMEInfo::~IMEInfo() { |
| 36 } |
| 37 |
| 38 IMEPropertyInfo::IMEPropertyInfo() |
| 39 : selected(false) { |
| 40 } |
| 41 |
| 42 IMEPropertyInfo::~IMEPropertyInfo() { |
| 43 } |
| 44 |
| 45 } // namespace ash |
OLD | NEW |