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

Unified Diff: chrome/browser/resources/settings/site_settings/site_settings_behavior.js

Issue 2115833003: Site Settings Desktop: Implement the cookies list and details dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missing file Created 4 years, 5 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
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);
},
};

Powered by Google App Engine
This is Rietveld 408576698