Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Side by Side Diff: ash/system/tray/system_tray_delegate.cc

Issue 410333005: Remove the drive status from the ash try. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | ash/system/tray/system_tray_notifier.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/system/tray/system_tray_delegate.h" 5 #include "ash/system/tray/system_tray_delegate.h"
6 6
7 namespace ash { 7 namespace ash {
8 8
9 NetworkIconInfo::NetworkIconInfo() 9 NetworkIconInfo::NetworkIconInfo()
10 : connecting(false), 10 : connecting(false),
11 connected(false), 11 connected(false),
12 tray_icon_visible(true), 12 tray_icon_visible(true),
13 is_cellular(false) { 13 is_cellular(false) {
14 } 14 }
15 15
16 NetworkIconInfo::~NetworkIconInfo() { 16 NetworkIconInfo::~NetworkIconInfo() {
17 } 17 }
18 18
19 BluetoothDeviceInfo::BluetoothDeviceInfo() 19 BluetoothDeviceInfo::BluetoothDeviceInfo()
20 : connected(false), 20 : connected(false),
21 connecting(false), 21 connecting(false),
22 paired(false) { 22 paired(false) {
23 } 23 }
24 24
25 BluetoothDeviceInfo::~BluetoothDeviceInfo() { 25 BluetoothDeviceInfo::~BluetoothDeviceInfo() {
26 } 26 }
27 27
28 DriveOperationStatus::DriveOperationStatus()
29 : id(-1),
30 progress(0.0),
31 type(OPERATION_DOWNLOAD),
32 state(OPERATION_NOT_STARTED) {
33 }
34
35 DriveOperationStatus::~DriveOperationStatus() {
36 }
37
38 IMEInfo::IMEInfo() 28 IMEInfo::IMEInfo()
39 : selected(false), 29 : selected(false),
40 third_party(false) { 30 third_party(false) {
41 } 31 }
42 32
43 IMEInfo::~IMEInfo() { 33 IMEInfo::~IMEInfo() {
44 } 34 }
45 35
46 IMEPropertyInfo::IMEPropertyInfo() 36 IMEPropertyInfo::IMEPropertyInfo()
47 : selected(false) { 37 : selected(false) {
48 } 38 }
49 39
50 IMEPropertyInfo::~IMEPropertyInfo() { 40 IMEPropertyInfo::~IMEPropertyInfo() {
51 } 41 }
52 42
53 } // namespace ash 43 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | ash/system/tray/system_tray_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698