| Index: chrome/browser/resources/options/chromeos/display_options.js
|
| diff --git a/chrome/browser/resources/options/chromeos/display_options.js b/chrome/browser/resources/options/chromeos/display_options.js
|
| index 2bd934ec1bdba1862f831f03291efcca3b6496c5..64bebd1dfbbd3a1acc230d12454806a8c55ed978 100644
|
| --- a/chrome/browser/resources/options/chromeos/display_options.js
|
| +++ b/chrome/browser/resources/options/chromeos/display_options.js
|
| @@ -6,13 +6,13 @@ cr.exportPath('options');
|
|
|
| /**
|
| * @typedef {{
|
| - * availableColorProfiles: Array.<{profileId: number, name: string}>,
|
| + * availableColorProfiles: Array<{profileId: number, name: string}>,
|
| * colorProfile: number,
|
| * height: number,
|
| * id: string,
|
| * isInternal: boolean,
|
| * isPrimary: boolean,
|
| - * resolutions: Array.<{width: number, height: number, originalWidth: number,
|
| + * resolutions: Array<{width: number, height: number, originalWidth: number,
|
| * originalHeight: number, deviceScaleFactor: number, scale: number,
|
| * refreshRate: number, isBest: boolean, selected: boolean}>,
|
| * name: string,
|
| @@ -125,7 +125,7 @@ cr.define('options', function() {
|
| /**
|
| * The array of current output displays. It also contains the display
|
| * rectangles currently rendered on screen.
|
| - * @type {Array.<options.DisplayInfo>}
|
| + * @type {Array<options.DisplayInfo>}
|
| * @private
|
| */
|
| displays_: [],
|
| @@ -906,7 +906,7 @@ cr.define('options', function() {
|
| /**
|
| * Called when the display arrangement has changed.
|
| * @param {boolean} mirroring Whether current mode is mirroring or not.
|
| - * @param {Array.<options.DisplayInfo>} displays The list of the display
|
| + * @param {Array<options.DisplayInfo>} displays The list of the display
|
| * information.
|
| * @param {options.SecondaryDisplayLayout} layout The layout strategy.
|
| * @param {number} offset The offset of the secondary display.
|
|
|