Chromium Code Reviews| Index: chrome/browser/resources/settings/site_settings/site_details.js |
| diff --git a/chrome/browser/resources/settings/site_settings/site_details.js b/chrome/browser/resources/settings/site_settings/site_details.js |
| index e5a36d9c90c0591fd5c13176ae51c0b49d8ac8df..23a96b74c3a57b31981c2aa90e1d53f5c7943b1b 100644 |
| --- a/chrome/browser/resources/settings/site_settings/site_details.js |
| +++ b/chrome/browser/resources/settings/site_settings/site_details.js |
| @@ -45,6 +45,15 @@ Polymer({ |
| }, |
| /** |
| + * @param {string} url Location of an image to get a set of icons for. |
| + * @return {string} A set of icon URLs. |
| + * @private |
| + */ |
| + getIconSet_: function(url) { |
| + return cr.icon.getFavicon(this.ensureUrlHasScheme(url)); |
| + }, |
|
Finnur
2016/09/14 11:00:21
The behavior already has a computeSiteIcon functio
dschuyler
2016/09/14 19:11:33
Done.
|
| + |
| + /** |
| * Handler for when the origin changes. |
| */ |
| onSiteChanged_: function() { |