| 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 4e61603ccfa5c751f5d1af18c30905f7049d28b6..f1f87eaf5089f75c9e5a160ee022d2f1853492b8 100644
|
| --- a/chrome/browser/resources/ntp_android/ntp_android.js
|
| +++ b/chrome/browser/resources/ntp_android/ntp_android.js
|
| @@ -1796,6 +1796,9 @@ cr.define('ntp', function() {
|
| // use a section divider.
|
| var needSectionDivider =
|
| (tabNum + 1 == tabs.length) && (winNum + 1 < windows.length);
|
| + tab.icon = tab.icon ||
|
| + 'chrome://session-favicon/size/16@1x/' + tab.url;
|
| +
|
| openTabsList.push({
|
| timestamp: tab.timestamp,
|
| title: tab.title,
|
| @@ -1804,7 +1807,7 @@ cr.define('ntp', function() {
|
| winNum: winNum,
|
| sessionId: tab.sessionId,
|
| icon: tab.icon,
|
| - iconSize: 32,
|
| + iconSize: 16,
|
| divider: needSectionDivider ? 'section' : 'standard',
|
| });
|
| }
|
|
|