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

Unified Diff: chrome/browser/chromeos/options/wimax_config_view.cc

Issue 762633002: Use NetworkConnectionObserver to trigger connect failure notifications (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: chrome/browser/chromeos/options/wimax_config_view.cc
diff --git a/chrome/browser/chromeos/options/wimax_config_view.cc b/chrome/browser/chromeos/options/wimax_config_view.cc
index d896fcf76e04c2d2270fb0b312b8691832e55c20..85cd71b837e31d35eeeb199a02463c415ebd4872 100644
--- a/chrome/browser/chromeos/options/wimax_config_view.cc
+++ b/chrome/browser/chromeos/options/wimax_config_view.cc
@@ -101,7 +101,7 @@ void WimaxConfigView::UpdateErrorLabel() {
const NetworkState* wimax = NetworkHandler::Get()->network_state_handler()->
GetNetworkState(service_path_);
if (wimax && wimax->connection_state() == shill::kStateFailure)
- error_msg = ui::NetworkConnect::Get()->GetErrorString(
+ error_msg = ui::NetworkConnect::Get()->GetShillErrorString(
wimax->last_error(), wimax->path());
}
if (!error_msg.empty()) {

Powered by Google App Engine
This is Rietveld 408576698