| Index: chrome/browser/resources/options/controlled_setting.js
|
| diff --git a/chrome/browser/resources/options/controlled_setting.js b/chrome/browser/resources/options/controlled_setting.js
|
| index c8af16d97dc0201caa4393fb968917aa123acf07..e6c58481337e6462dfbd367c4f33e8a4b3bd70a7 100644
|
| --- a/chrome/browser/resources/options/controlled_setting.js
|
| +++ b/chrome/browser/resources/options/controlled_setting.js
|
| @@ -10,7 +10,7 @@ cr.define('options', function() {
|
| * indicator that the value is controlled by some external entity such as
|
| * policy or an extension.
|
| * @constructor
|
| - * @extends {HTMLSpanElement}
|
| + * @extends {cr.ui.BubbleButton}
|
| */
|
| var ControlledSettingIndicator = cr.ui.define('span');
|
|
|
| @@ -187,7 +187,6 @@ cr.define('options', function() {
|
|
|
| /**
|
| * The name of the associated preference.
|
| - * @type {string}
|
| */
|
| cr.defineProperty(ControlledSettingIndicator, 'pref', cr.PropertyKind.ATTR);
|
|
|
| @@ -197,7 +196,6 @@ cr.define('options', function() {
|
| * only actually committed when the user confirms the dialog. If the user
|
| * cancels the dialog instead, the changes are rolled back in the settings UI
|
| * and never committed.
|
| - * @type {boolean}
|
| */
|
| cr.defineProperty(ControlledSettingIndicator, 'dialogPref',
|
| cr.PropertyKind.BOOL_ATTR);
|
| @@ -215,7 +213,7 @@ cr.define('options', function() {
|
|
|
| /**
|
| * The status of the associated preference:
|
| - * - 'policy': A specific value is enfoced by policy.
|
| + * - 'policy': A specific value is enforced by policy.
|
| * - 'extension': A specific value is enforced by an extension.
|
| * - 'recommended': A value is recommended by policy. The user could
|
| * override this recommendation but has not done so.
|
| @@ -226,7 +224,6 @@ cr.define('options', function() {
|
| * - 'shared': A value belongs to the primary user but can be
|
| * modified (Chrome OS only).
|
| * - unset: The value is controlled by the user alone.
|
| - * @type {string}
|
| */
|
| cr.defineProperty(ControlledSettingIndicator, 'controlledBy',
|
| cr.PropertyKind.ATTR);
|
|
|