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

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

Issue 2568063002: [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 720efb7c570bfca95f2f5fa55686b1f2c14f5a85..63976268879336cadb58d5aa2999c030cbba5b7e 100644
--- a/chrome/browser/resources/options/password_manager_list.js
+++ b/chrome/browser/resources/options/password_manager_list.js
@@ -97,7 +97,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