| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 4db78df1a1e5cef55c352464e079538928776e1b..14de5c7c953315aa988b50d49b6cfb55a777cbcc 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1348,7 +1348,7 @@ content::SecurityStyle Browser::GetSecurityStyle(
|
| security_info.cert_id));
|
| } else if (security_info.sha1_deprecation_status ==
|
| SecurityStateModel::DEPRECATED_SHA1_MINOR) {
|
| - security_style_explanations->warning_explanations.push_back(
|
| + security_style_explanations->unauthenticated_explanations.push_back(
|
| content::SecurityStyleExplanation(
|
| l10n_util::GetStringUTF8(IDS_MINOR_SHA1),
|
| l10n_util::GetStringUTF8(IDS_MINOR_SHA1_DESCRIPTION),
|
| @@ -1377,7 +1377,8 @@ content::SecurityStyle Browser::GetSecurityStyle(
|
| security_info.cert_id);
|
|
|
| if (net::IsCertStatusMinorError(security_info.cert_status))
|
| - 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 {
|
|
|