| Index: chrome/browser/resources/settings/controls/controlled_button.js
|
| diff --git a/chrome/browser/resources/settings/controls/controlled_button.js b/chrome/browser/resources/settings/controls/controlled_button.js
|
| index d1b97231b589064ca4a4d9aa74c0da9445c3a6aa..947d8b6c15c89d7ff2dbccbb055254129afea013 100644
|
| --- a/chrome/browser/resources/settings/controls/controlled_button.js
|
| +++ b/chrome/browser/resources/settings/controls/controlled_button.js
|
| @@ -18,11 +18,23 @@ Polymer({
|
| reflectToAttribute: true,
|
| },
|
|
|
| + /**
|
| + * This attribute takes in a class-name to form an icon button instead of
|
| + * a paper-button. Note that if this attribute is present, the light dom
|
| + * content will be ignored.
|
| + */
|
| + iconClass: {
|
| + type: String,
|
| + value: null,
|
| + reflectToAttribute: true,
|
| + },
|
| +
|
| /** @private */
|
| - controlled_: {
|
| + controlled: {
|
| type: Boolean,
|
| computed: 'computeControlled_(pref.*)',
|
| reflectToAttribute: true,
|
| + notify: true
|
| },
|
| },
|
|
|
|
|