| Index: chrome/browser/resources/options/chromeos/bluetooth_device_list.js
|
| diff --git a/chrome/browser/resources/options/chromeos/bluetooth_device_list.js b/chrome/browser/resources/options/chromeos/bluetooth_device_list.js
|
| index ede390fe4db5cc4e4fe0b35dd84d4e6cd1b7fdd6..a7cadb837d4171531d53f20a39e451cfe72f7271 100644
|
| --- a/chrome/browser/resources/options/chromeos/bluetooth_device_list.js
|
| +++ b/chrome/browser/resources/options/chromeos/bluetooth_device_list.js
|
| @@ -21,10 +21,10 @@ cr.define('options.system.bluetooth', function() {
|
| * connected: boolean,
|
| * connecting: boolean,
|
| * connectable: boolean,
|
| - * pairing: string|undefined,
|
| - * passkey: number|undefined,
|
| - * pincode: string|undefined,
|
| - * entered: number|undefined}} device
|
| + * pairing: (string|undefined),
|
| + * passkey: (number|undefined),
|
| + * pincode: (string|undefined),
|
| + * entered: (number|undefined)}} device
|
| * Description of the Bluetooth device.
|
| * @constructor
|
| * @extends {options.DeletableItem}
|
| @@ -112,7 +112,7 @@ cr.define('options.system.bluetooth', function() {
|
| /**
|
| * Width of a list entry in px.
|
| * @type {number}
|
| - * @private.
|
| + * @private
|
| */
|
| itemWidth_: 400,
|
|
|
| @@ -260,9 +260,9 @@ cr.define('options.system.bluetooth', function() {
|
| /**
|
| * Override the default implementation to return a predetermined size,
|
| * which in turns allows proper layout of items even if the list is hidden.
|
| - * @return {height: number, width: number} Dimensions of a single item in
|
| + * @return {{height: number, width: number}} Dimensions of a single item in
|
| * the list of bluetooth device.
|
| - * @private.
|
| + * @private
|
| */
|
| getDefaultItemSize_: function() {
|
| return {
|
|
|