| OLD | NEW |
| 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 : highlight(false), | 10 : highlight(false), |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 } | 22 } |
| 23 | 23 |
| 24 DriveOperationStatus::DriveOperationStatus() | 24 DriveOperationStatus::DriveOperationStatus() |
| 25 : progress(0.0), type(OPERATION_OTHER), state(OPERATION_NOT_STARTED) { | 25 : progress(0.0), type(OPERATION_OTHER), state(OPERATION_NOT_STARTED) { |
| 26 } | 26 } |
| 27 | 27 |
| 28 DriveOperationStatus::~DriveOperationStatus() { | 28 DriveOperationStatus::~DriveOperationStatus() { |
| 29 } | 29 } |
| 30 | 30 |
| 31 IMEInfo::IMEInfo() | 31 IMEInfo::IMEInfo() |
| 32 : selected(false) { | 32 : selected(false), |
| 33 third_party(false) { |
| 33 } | 34 } |
| 34 | 35 |
| 35 IMEInfo::~IMEInfo() { | 36 IMEInfo::~IMEInfo() { |
| 36 } | 37 } |
| 37 | 38 |
| 38 IMEPropertyInfo::IMEPropertyInfo() | 39 IMEPropertyInfo::IMEPropertyInfo() |
| 39 : selected(false) { | 40 : selected(false) { |
| 40 } | 41 } |
| 41 | 42 |
| 42 IMEPropertyInfo::~IMEPropertyInfo() { | 43 IMEPropertyInfo::~IMEPropertyInfo() { |
| 43 } | 44 } |
| 44 | 45 |
| 45 } // namespace ash | 46 } // namespace ash |
| OLD | NEW |