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

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

Issue 23872021: Use Name not SSID in CopyIdentifyingProperties (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months 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
« no previous file with comments | « no previous file | chromeos/network/shill_property_util.cc » ('j') | chromeos/network/shill_property_util.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/options/wifi_config_view.cc
diff --git a/chrome/browser/chromeos/options/wifi_config_view.cc b/chrome/browser/chromeos/options/wifi_config_view.cc
index e8193d7dcb09b46a17e5f03e45bb68be99456670..603153dd5c80f00aeac97639d6f4b142a13b454b 100644
--- a/chrome/browser/chromeos/options/wifi_config_view.cc
+++ b/chrome/browser/chromeos/options/wifi_config_view.cc
@@ -1249,6 +1249,9 @@ void WifiConfigView::InitFromProperties(
if (cert_index >= 0) {
// Skip item for "Default".
server_ca_cert_combobox_->SetSelectedIndex(1 + cert_index);
+ } else {
+ // "Default"
+ server_ca_cert_combobox_->SetSelectedIndex(0);
}
}
}
@@ -1292,6 +1295,7 @@ void WifiConfigView::InitFromProperties(
flimflam::kSaveCredentialsProperty, &save_credentials);
save_credentials_checkbox_->SetChecked(save_credentials);
+ UpdateDialogButtons();
RefreshShareCheckbox();
UpdateErrorLabel();
}
« no previous file with comments | « no previous file | chromeos/network/shill_property_util.cc » ('j') | chromeos/network/shill_property_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698