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

Unified Diff: chrome/browser/resources/options/chromeos/bluetooth_device_list.js

Issue 543493002: Compile chrome://settings, part 2: reduce from 950 to 400 errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@F_settings
Patch Set: rebase? rebase! Created 6 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
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 {

Powered by Google App Engine
This is Rietveld 408576698