Index: ash/system/chromeos/network/network_icon.cc |
diff --git a/ash/system/chromeos/network/network_icon.cc b/ash/system/chromeos/network/network_icon.cc |
index f241eb1554b4ff211ed886bbdf3b2b76b69bd650..85799bec4a476d4ee6bc92fc95e404dd6caab837 100644 |
--- a/ash/system/chromeos/network/network_icon.cc |
+++ b/ash/system/chromeos/network/network_icon.cc |
@@ -695,8 +695,8 @@ int GetCellularUninitializedMsg() { |
static int s_uninitialized_msg(0); |
NetworkStateHandler* handler = NetworkStateHandler::Get(); |
- if (handler->TechnologyUninitialized( |
- NetworkStateHandler::kMatchTypeMobile)) { |
+ if (handler->GetTechnologyState(NetworkStateHandler::kMatchTypeMobile) |
+ == NetworkStateHandler::TECHNOLOGY_UNINITIALIZED) { |
s_uninitialized_msg = IDS_ASH_STATUS_TRAY_INITIALIZING_CELLULAR; |
s_uninitialized_state_time = base::Time::Now(); |
return s_uninitialized_msg; |