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

Unified Diff: chrome/browser/resources/options/password_manager_list.js

Issue 2600723002: [Password Manager] Fix icons on chrome://settings/passwords (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 b6a502ca3d502e5abbf0e8caf2587c043f752bd5..9fd160f57fd2f1bd9f147fbd48881f0aae919637 100644
--- a/chrome/browser/resources/options/password_manager_list.js
+++ b/chrome/browser/resources/options/password_manager_list.js
@@ -96,7 +96,7 @@ cr.define('options.passwordManager', function() {
var urlDiv = cr.doc.createElement('div');
urlDiv.className = 'favicon-cell url';
urlDiv.setAttribute('title', getTitleForPasswordOrigin(item));
- urlDiv.style.backgroundImage = cr.icon.getFavicon('origin/' + item.url);
+ urlDiv.style.backgroundImage = cr.icon.getFavicon(item.url);
item.urlLink = createUrlLink(item, urlDiv);
urlDiv.appendChild(item.urlLink);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698