| Index: chrome/browser/resources/options/password_manager_list.js
|
| diff --git a/chrome/browser/resources/options/password_manager_list.js b/chrome/browser/resources/options/password_manager_list.js
|
| index 8a9bdcd35925a46f5a03a446890939722351874c..5f3aee4a75bd81c4926c788c573f7e31e03ef32d 100644
|
| --- a/chrome/browser/resources/options/password_manager_list.js
|
| +++ b/chrome/browser/resources/options/password_manager_list.js
|
| @@ -44,8 +44,8 @@ cr.define('options.passwordManager', function() {
|
| // http) is being used. This ensures that the favicon returned is the
|
| // default favicon for the domain and that the URL has a scheme if none
|
| // is present in the password manager.
|
| - urlLabel.style.backgroundImage =
|
| - url('chrome://favicon/origin/' + this.url);
|
| + urlLabel.style.backgroundImage = getFaviconImageSet(
|
| + 'origin/' + this.url, 16);
|
| this.contentElement.appendChild(urlLabel);
|
|
|
| // The stored username.
|
| @@ -185,8 +185,8 @@ cr.define('options.passwordManager', function() {
|
| // http) is being used. This ensures that the favicon returned is the
|
| // default favicon for the domain and that the URL has a scheme if none
|
| // is present in the password manager.
|
| - urlLabel.style.backgroundImage =
|
| - url('chrome://favicon/origin/' + this.url);
|
| + urlLabel.style.backgroundImage = getFaviconImageSet(
|
| + 'origin/' + this.url, 16);
|
| this.contentElement.appendChild(urlLabel);
|
| },
|
|
|
|
|