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

Unified Diff: ash/common/system/chromeos/network/network_info.cc

Issue 2517953006: [ash-md] Adds Wi-Fi network status indicators in system menu (Closed)
Patch Set: [ash-md] Adds Wi-Fi network status indicators in system menu Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ash/common/system/chromeos/network/network_info.cc
diff --git a/ash/common/system/chromeos/network/network_info.cc b/ash/common/system/chromeos/network/network_info.cc
index acf55f54fb840af85f32688b54f2a204fcab328a..bd1b34e6b23565c7371e4aa57e026dd7ac2ca794 100644
--- a/ash/common/system/chromeos/network/network_info.cc
+++ b/ash/common/system/chromeos/network/network_info.cc
@@ -7,12 +7,18 @@
namespace ash {
NetworkInfo::NetworkInfo()
- : disable(false), highlight(false), type(Type::UNKNOWN) {}
+ : disable(false),
+ highlight(false),
+ connected(false),
+ connecting(false),
+ type(Type::UNKNOWN) {}
NetworkInfo::NetworkInfo(const std::string& path)
: service_path(path),
disable(false),
highlight(false),
+ connected(false),
+ connecting(false),
type(Type::UNKNOWN) {}
NetworkInfo::~NetworkInfo() {}
« no previous file with comments | « ash/common/system/chromeos/network/network_info.h ('k') | ash/common/system/chromeos/network/network_list_md.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698