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

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

Issue 10916329: [Android] Request correctly sized favicon for recently closed tabs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Request 64px for list-entry-item Created 8 years, 3 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
« 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/ntp_android/ntp_android.js
diff --git a/chrome/browser/resources/ntp_android/ntp_android.js b/chrome/browser/resources/ntp_android/ntp_android.js
index 4dee6a4ac92636f217d0a19d5204a6593ffe16bc..34b954dfb5c2cb9e4d779ebdff188b533e4f6c8c 100644
--- a/chrome/browser/resources/ntp_android/ntp_android.js
+++ b/chrome/browser/resources/ntp_android/ntp_android.js
@@ -592,7 +592,7 @@ cr.define('ntp', function() {
cell.setAttribute(CONTEXT_MENU_URL_KEY, item.url);
- var iconUrl = item.icon || 'chrome://touch-icon/size/64/' + item.url;
+ var iconUrl = item.icon || 'chrome://touch-icon/size/16/' + item.url;
var icon = createDiv('icon', iconUrl);
trackImageLoad(iconUrl);
cell.appendChild(icon);
« 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