Chromium Code Reviews| Index: chrome/browser/ui/browser.cc |
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc |
| index c978c53de388ce833245314d9562f2524d4fa7f0..ecf765ced4747a39c6690aa7a2b76c86314e3b32 100644 |
| --- a/chrome/browser/ui/browser.cc |
| +++ b/chrome/browser/ui/browser.cc |
| @@ -1354,7 +1354,7 @@ content::SecurityStyle Browser::GetSecurityStyle( |
| security_info.cert_id)); |
| } else if (security_info.sha1_deprecation_status == |
| SecurityStateModel::DEPRECATED_SHA1_WARNING) { |
| - security_style_explanations->warning_explanations.push_back( |
| + security_style_explanations->unauthenticated_explanations.push_back( |
| content::SecurityStyleExplanation( |
| l10n_util::GetStringUTF8(IDS_WARNING_SHA1), |
| l10n_util::GetStringUTF8(IDS_WARNING_SHA1_DESCRIPTION), |
| @@ -1383,7 +1383,8 @@ content::SecurityStyle Browser::GetSecurityStyle( |
| security_info.cert_id); |
| if (net::IsCertStatusMinorError(security_info.cert_status)) |
|
Peter Kasting
2015/11/07 02:33:18
Nit: This now needs {}
|
| - security_style_explanations->warning_explanations.push_back(explanation); |
| + security_style_explanations->unauthenticated_explanations.push_back( |
| + explanation); |
| else |
| security_style_explanations->broken_explanations.push_back(explanation); |
| } else { |