| Index: chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| diff --git a/chrome/browser/resources/settings/site_settings/site_settings_behavior.js b/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| index a89c24b6e576fb86b30ca84274e5976565b8d9d6..86ee14b310d535a8e6d5c43e6b3f104bf8ce4e29 100644
|
| --- a/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| +++ b/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| @@ -362,12 +362,12 @@ var SiteSettingsBehaviorImpl = {
|
|
|
| /**
|
| * Returns the icon to use for a given site.
|
| - * @param {SiteException} site The url of the site to fetch the icon for.
|
| + * @param {string} site The url of the site to fetch the icon for.
|
| * @return {string} The background-image style with the favicon.
|
| * @private
|
| */
|
| computeSiteIcon: function(site) {
|
| - var url = this.ensureUrlHasScheme(site.originForDisplay);
|
| + var url = this.ensureUrlHasScheme(site);
|
| return 'background-image: ' + cr.icon.getFaviconImageSet(url);
|
| },
|
| };
|
|
|