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

Unified Diff: chrome/browser/resources/ntp_search/thumbnail_page.js

Issue 11762004: Make favicons for about:history and about:bookmarks switch from lodpi to hidpi when dragging browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/ntp_search/thumbnail_page.js
diff --git a/chrome/browser/resources/ntp_search/thumbnail_page.js b/chrome/browser/resources/ntp_search/thumbnail_page.js
index c4ff74554d409356e3730029b6ed9cb926b79496..9b85cff51200ddce9397f335453c39568b5c5c3b 100644
--- a/chrome/browser/resources/ntp_search/thumbnail_page.js
+++ b/chrome/browser/resources/ntp_search/thumbnail_page.js
@@ -91,7 +91,7 @@ cr.define('ntp', function() {
var favicon = this.querySelector('.thumbnail-favicon') ||
this.ownerDocument.createElement('div');
favicon.className = 'thumbnail-favicon';
- favicon.style.backgroundImage = url(getFaviconUrl(dataUrl));
+ favicon.style.backgroundImage = getFaviconImageSet(dataUrl);
this.appendChild(favicon);
var self = this;

Powered by Google App Engine
This is Rietveld 408576698