Chromium Code Reviews| Index: chrome/browser/chromeos/options/vpn_config_view.cc |
| diff --git a/chrome/browser/chromeos/options/vpn_config_view.cc b/chrome/browser/chromeos/options/vpn_config_view.cc |
| index 6b0199f73b73dcc375c5e2112cd4898c4c52f8ed..8a1cffc52d0e72abb89390b02d9a6f74532ff2e0 100644 |
| --- a/chrome/browser/chromeos/options/vpn_config_view.cc |
| +++ b/chrome/browser/chromeos/options/vpn_config_view.cc |
| @@ -1030,8 +1030,7 @@ bool VPNConfigView::IsUserCertValid() const { |
| if (index < 0) |
| return false; |
| // Currently only hardware-backed user certificates are valid. |
|
stevenjb
2016/11/08 20:09:37
Update comment.
Kevin Cernekee
2016/11/08 21:00:41
Done.
|
| - if (!CertLibrary::Get()->IsCertHardwareBackedAt(CertLibrary::CERT_TYPE_USER, |
| - index)) { |
| + if (!CertLibrary::Get()->IsCertSecureAt(CertLibrary::CERT_TYPE_USER, index)) { |
| return false; |
| } |
| return true; |