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

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

Issue 2280853002: Slightly nicer icon.js APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/history/history.js
diff --git a/chrome/browser/resources/history/history.js b/chrome/browser/resources/history/history.js
index 5ca33c68c215669b61205f32eb35223be17c88a2..c776c0bbebbf67950a5e611ac28cf47086f621cb 100644
--- a/chrome/browser/resources/history/history.js
+++ b/chrome/browser/resources/history/history.js
@@ -462,7 +462,7 @@ Visit.prototype.loadFavicon_ = function(faviconDiv) {
img.onload = this.onLargeFaviconLoadedAndroid_.bind(this, faviconDiv);
img.src = 'chrome://large-icon/' + desiredPixelSize + '/' + this.url_;
} else {
- faviconDiv.style.backgroundImage = cr.icon.getFaviconImageSet(this.url_);
+ faviconDiv.style.backgroundImage = cr.icon.getFavicon(this.url_);
}
};

Powered by Google App Engine
This is Rietveld 408576698