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

Unified Diff: chrome/browser/resources/suggestions_internals/suggestions_internals.js

Issue 11787015: Allow the password manager in the settings page to have hidpi favicons too (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 11 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/suggestions_internals/suggestions_internals.js
diff --git a/chrome/browser/resources/suggestions_internals/suggestions_internals.js b/chrome/browser/resources/suggestions_internals/suggestions_internals.js
index 723143a0324c544bfc63e01cd443194dab84a56e..90d0ce8d9762d104507a2c28ade514087bcfa120 100644
--- a/chrome/browser/resources/suggestions_internals/suggestions_internals.js
+++ b/chrome/browser/resources/suggestions_internals/suggestions_internals.js
@@ -164,7 +164,7 @@ cr.define('suggestionsInternals', function() {
img.onerror = function() { setBooleanColumn(column, false); }
img.src = thumbnailUrl;
} else if (column_name == 'favicon') {
- var faviconUrl = 'chrome://favicon/size/16/' + entry.url;
+ var faviconUrl = 'chrome://favicon/size/16@1x/' + entry.url;
column.style.backgroundImage = url(faviconUrl);
column.style.backgroundRepeat = 'no-repeat';
column.style.backgroundPosition = 'center center';
« no previous file with comments | « chrome/browser/resources/options/search_engine_manager_engine_list.js ('k') | chrome/browser/ui/webui/favicon_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698