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 452b67125f759456992a431618ef9b1b048edc45..7007b8d4bde0ac9ba6d491c8d5a2f3c1efa8302c 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; |