Index: chrome/browser/resources/options/pref_ui.js |
diff --git a/chrome/browser/resources/options/pref_ui.js b/chrome/browser/resources/options/pref_ui.js |
index c6c49ffa7e1ad04878e07d19cd6228acfa188fdb..e825b689cec5fdb097af3c7801d09d1fb1df7b7e 100644 |
--- a/chrome/browser/resources/options/pref_ui.js |
+++ b/chrome/browser/resources/options/pref_ui.js |
@@ -155,7 +155,11 @@ cr.define('options', function() { |
///////////////////////////////////////////////////////////////////////////// |
// PrefCheckbox class: |
- // Define a constructor that uses an input element as its underlying element. |
+ /** |
+ * Define a constructor that uses an input element as its underlying element. |
+ * @constructor |
+ * @extends {options.PrefInputElement} |
+ */ |
var PrefCheckbox = cr.ui.define('input'); |
PrefCheckbox.prototype = { |
@@ -281,7 +285,11 @@ cr.define('options', function() { |
///////////////////////////////////////////////////////////////////////////// |
// PrefRange class: |
- // Define a constructor that uses an input element as its underlying element. |
+ /** |
+ * Define a constructor that uses an input element as its underlying element. |
+ * @constructor |
+ * @extends {options.PrefInputElement} |
+ */ |
var PrefRange = cr.ui.define('input'); |
PrefRange.prototype = { |