OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/options/wifi_config_view.h" | 5 #include "chrome/browser/chromeos/options/wifi_config_view.h" |
6 | 6 |
7 #include "ash/system/chromeos/network/network_connect.h" | 7 #include "ash/system/chromeos/network/network_connect.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
568 share_network_checkbox_->SetChecked(value); | 568 share_network_checkbox_->SetChecked(value); |
569 share_network_checkbox_->SetEnabled(enabled); | 569 share_network_checkbox_->SetEnabled(enabled); |
570 } | 570 } |
571 } | 571 } |
572 | 572 |
573 void WifiConfigView::UpdateErrorLabel() { | 573 void WifiConfigView::UpdateErrorLabel() { |
574 base::string16 error_msg; | 574 base::string16 error_msg; |
575 if (UserCertRequired() && CertLibrary::Get()->CertificatesLoaded()) { | 575 if (UserCertRequired() && CertLibrary::Get()->CertificatesLoaded()) { |
576 if (!HaveUserCerts()) { | 576 if (!HaveUserCerts()) { |
577 if (!LoginState::Get()->IsUserLoggedIn() || | 577 if (!LoginState::Get()->IsUserLoggedIn() || |
578 LoginState::Get()->IsGuestUser()) { | 578 LoginState::Get()->IsGuestSessionUser()) { |
stevenjb
2014/08/08 16:57:06
Do installed certificates in public sessions persi
pneubeck (no reviews)
2014/08/08 20:45:24
Yes, right. I don't want to change behavior in thi
stevenjb
2014/08/12 02:23:17
sgtm
| |
579 error_msg = l10n_util::GetStringUTF16( | 579 error_msg = l10n_util::GetStringUTF16( |
580 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_LOGIN_FOR_USER_CERT); | 580 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_LOGIN_FOR_USER_CERT); |
581 } else { | 581 } else { |
582 error_msg = l10n_util::GetStringUTF16( | 582 error_msg = l10n_util::GetStringUTF16( |
583 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_PLEASE_INSTALL_USER_CERT); | 583 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_PLEASE_INSTALL_USER_CERT); |
584 } | 584 } |
585 } else if (!IsUserCertValid()) { | 585 } else if (!IsUserCertValid()) { |
586 error_msg = l10n_util::GetStringUTF16( | 586 error_msg = l10n_util::GetStringUTF16( |
587 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_REQUIRE_HARDWARE_BACKED); | 587 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_REQUIRE_HARDWARE_BACKED); |
588 } | 588 } |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1374 void WifiConfigView::ParseEAPUIProperty(NetworkPropertyUIData* property_ui_data, | 1374 void WifiConfigView::ParseEAPUIProperty(NetworkPropertyUIData* property_ui_data, |
1375 const NetworkState* network, | 1375 const NetworkState* network, |
1376 const std::string& key) { | 1376 const std::string& key) { |
1377 std::string onc_tag = network->type() == shill::kTypeEthernet | 1377 std::string onc_tag = network->type() == shill::kTypeEthernet |
1378 ? ::onc::ethernet::kEAP | 1378 ? ::onc::ethernet::kEAP |
1379 : ::onc::wifi::kEAP; | 1379 : ::onc::wifi::kEAP; |
1380 ParseUIProperty(property_ui_data, network, onc_tag + '.' + key); | 1380 ParseUIProperty(property_ui_data, network, onc_tag + '.' + key); |
1381 } | 1381 } |
1382 | 1382 |
1383 } // namespace chromeos | 1383 } // namespace chromeos |
OLD | NEW |