| Index: chrome/browser/resources/settings/site_settings/site_list.js
|
| diff --git a/chrome/browser/resources/settings/site_settings/site_list.js b/chrome/browser/resources/settings/site_settings/site_list.js
|
| index 41f844e50bf027e34072ff405f0adb9c232de9c3..8c6af1e2537ff4689c56ab25659ea7f52c5e2f25 100644
|
| --- a/chrome/browser/resources/settings/site_settings/site_list.js
|
| +++ b/chrome/browser/resources/settings/site_settings/site_list.js
|
| @@ -474,29 +474,6 @@ Polymer({
|
| },
|
|
|
| /**
|
| - * Returns the appropriate header value for display.
|
| - * @param {Array<string>} siteList The list of all sites to display for this
|
| - * category subtype.
|
| - * @param {boolean} toggleState The state of the global toggle for this
|
| - * category.
|
| - * @private
|
| - */
|
| - computeSiteListHeader_: function(siteList, toggleState) {
|
| - var title = '';
|
| - if (this.categorySubtype == settings.PermissionValues.ALLOW) {
|
| - title = loadTimeData.getString(
|
| - toggleState ? 'siteSettingsAllow' : 'siteSettingsExceptions');
|
| - } else if (this.categorySubtype == settings.PermissionValues.BLOCK) {
|
| - title = loadTimeData.getString('siteSettingsBlock');
|
| - } else if (this.categorySubtype == settings.PermissionValues.SESSION_ONLY) {
|
| - title = loadTimeData.getString('siteSettingsSessionOnly');
|
| - } else {
|
| - return title;
|
| - }
|
| - return loadTimeData.getStringF('titleAndCount', title, siteList.length);
|
| - },
|
| -
|
| - /**
|
| * Returns the appropriate site description to display. This can, for example,
|
| * be blank, an 'embedded on <site>' or 'Current incognito session' (or a
|
| * mix of the last two).
|
|
|