| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/common/system/chromeos/network/network_info.h" | 5 #include "ash/common/system/chromeos/network/network_info.h" |
| 6 | 6 |
| 7 namespace ash { | 7 namespace ash { |
| 8 | 8 |
| 9 NetworkInfo::NetworkInfo() | 9 NetworkInfo::NetworkInfo() |
| 10 : disable(false), highlight(false), type(Type::UNKNOWN) {} | 10 : disable(false), |
| 11 highlight(false), |
| 12 connected(false), |
| 13 connecting(false), |
| 14 type(Type::UNKNOWN) {} |
| 11 | 15 |
| 12 NetworkInfo::NetworkInfo(const std::string& path) | 16 NetworkInfo::NetworkInfo(const std::string& path) |
| 13 : service_path(path), | 17 : service_path(path), |
| 14 disable(false), | 18 disable(false), |
| 15 highlight(false), | 19 highlight(false), |
| 20 connected(false), |
| 21 connecting(false), |
| 16 type(Type::UNKNOWN) {} | 22 type(Type::UNKNOWN) {} |
| 17 | 23 |
| 18 NetworkInfo::~NetworkInfo() {} | 24 NetworkInfo::~NetworkInfo() {} |
| 19 | 25 |
| 20 } // namespace ash | 26 } // namespace ash |
| OLD | NEW |