| 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 35988303db0ea5b6c9ac4df73b8fcbfd7c8409f7..63a9acea713a64b2cd65d47c5f194fbf04fbd18d 100644
|
| --- a/chrome/browser/resources/suggestions_internals/suggestions_internals.js
|
| +++ b/chrome/browser/resources/suggestions_internals/suggestions_internals.js
|
| @@ -41,7 +41,7 @@ cr.define('suggestionsInternals', function() {
|
|
|
| /**
|
| * A list of columns that we do not want to display.
|
| - * @type {Array.<string>}
|
| + * @type {Array<string>}
|
| * @const
|
| */
|
| var IGNORED_COLUMNS = [
|
| @@ -52,7 +52,7 @@ cr.define('suggestionsInternals', function() {
|
| * A list specifying the name of the first columns to be displayed. If
|
| * present, they will be displayed in this order, followed by the remaining
|
| * columns.
|
| - * @type {Array.<string>}
|
| + * @type {Array<string>}
|
| * @const
|
| */
|
| var PREFERRED_COLUMN_ORDER = [
|
| @@ -160,8 +160,8 @@ cr.define('suggestionsInternals', function() {
|
| } else if (columnName == 'screenshot') {
|
| var thumbnailUrl = 'chrome://thumb/' + entry.url;
|
| var img = document.createElement('img');
|
| - img.onload = function() { setBooleanColumn(column, true); }
|
| - img.onerror = function() { setBooleanColumn(column, false); }
|
| + img.onload = function() { setBooleanColumn(column, true); };
|
| + img.onerror = function() { setBooleanColumn(column, false); };
|
| img.src = thumbnailUrl;
|
| } else if (columnName == 'favicon') {
|
| var faviconUrl = 'chrome://favicon/size/16@1x/' + entry.url;
|
|
|