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

Unified Diff: chrome/browser/ui/website_settings/website_settings_ui.cc

Issue 2620123003: Move Page Info security summary and detail strings into `pageinfo_strings.grdp`. (Closed)
Patch Set: OWNERS Created 3 years, 11 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 | « chrome/browser/ui/website_settings/website_settings.cc ('k') | components/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/website_settings/website_settings_ui.cc
diff --git a/chrome/browser/ui/website_settings/website_settings_ui.cc b/chrome/browser/ui/website_settings/website_settings_ui.cc
index 62370e0d6d9b10ae382077379f69a40e992182d9..eb5d6ae97c6318a4338debb9e39c5a9ef708486a 100644
--- a/chrome/browser/ui/website_settings/website_settings_ui.cc
+++ b/chrome/browser/ui/website_settings/website_settings_ui.cc
@@ -170,34 +170,34 @@ WebsiteSettingsUI::IdentityInfo::GetSecurityDescription() const {
case WebsiteSettings::
SITE_CONNECTION_STATUS_INSECURE_ACTIVE_SUBRESOURCE:
return CreateSecurityDescription(
- IDS_WEBSITE_SETTINGS_NOT_SECURE_SUMMARY,
- IDS_WEBSITE_SETTINGS_NOT_SECURE_DETAILS);
+ IDS_PAGEINFO_NOT_SECURE_SUMMARY,
+ IDS_PAGEINFO_NOT_SECURE_DETAILS);
case WebsiteSettings::
SITE_CONNECTION_STATUS_INSECURE_PASSIVE_SUBRESOURCE:
return CreateSecurityDescription(
- IDS_WEBSITE_SETTINGS_MIXED_CONTENT_SUMMARY,
- IDS_WEBSITE_SETTINGS_MIXED_CONTENT_DETAILS);
+ IDS_PAGEINFO_MIXED_CONTENT_SUMMARY,
+ IDS_PAGEINFO_MIXED_CONTENT_DETAILS);
default:
- return CreateSecurityDescription(IDS_WEBSITE_SETTINGS_SECURE_SUMMARY,
- IDS_WEBSITE_SETTINGS_SECURE_DETAILS);
+ return CreateSecurityDescription(IDS_PAGEINFO_SECURE_SUMMARY,
+ IDS_PAGEINFO_SECURE_DETAILS);
}
case WebsiteSettings::SITE_IDENTITY_STATUS_MALWARE:
- return CreateSecurityDescription(IDS_WEBSITE_SETTINGS_MALWARE_SUMMARY,
- IDS_WEBSITE_SETTINGS_MALWARE_DETAILS);
+ return CreateSecurityDescription(IDS_PAGEINFO_MALWARE_SUMMARY,
+ IDS_PAGEINFO_MALWARE_DETAILS);
case WebsiteSettings::SITE_IDENTITY_STATUS_SOCIAL_ENGINEERING:
return CreateSecurityDescription(
- IDS_WEBSITE_SETTINGS_SOCIAL_ENGINEERING_SUMMARY,
- IDS_WEBSITE_SETTINGS_SOCIAL_ENGINEERING_DETAILS);
+ IDS_PAGEINFO_SOCIAL_ENGINEERING_SUMMARY,
+ IDS_PAGEINFO_SOCIAL_ENGINEERING_DETAILS);
case WebsiteSettings::SITE_IDENTITY_STATUS_UNWANTED_SOFTWARE:
return CreateSecurityDescription(
- IDS_WEBSITE_SETTINGS_UNWANTED_SOFTWARE_SUMMARY,
- IDS_WEBSITE_SETTINGS_UNWANTED_SOFTWARE_DETAILS);
+ IDS_PAGEINFO_UNWANTED_SOFTWARE_SUMMARY,
+ IDS_PAGEINFO_UNWANTED_SOFTWARE_DETAILS);
case WebsiteSettings::SITE_IDENTITY_STATUS_DEPRECATED_SIGNATURE_ALGORITHM:
case WebsiteSettings::SITE_IDENTITY_STATUS_UNKNOWN:
case WebsiteSettings::SITE_IDENTITY_STATUS_NO_CERT:
default:
- return CreateSecurityDescription(IDS_WEBSITE_SETTINGS_NOT_SECURE_SUMMARY,
- IDS_WEBSITE_SETTINGS_NOT_SECURE_DETAILS);
+ return CreateSecurityDescription(IDS_PAGEINFO_NOT_SECURE_SUMMARY,
+ IDS_PAGEINFO_NOT_SECURE_DETAILS);
}
}
« no previous file with comments | « chrome/browser/ui/website_settings/website_settings.cc ('k') | components/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698