| Index: chrome/browser/resources/settings/controls/settings_radio_group.js
|
| diff --git a/chrome/browser/resources/settings/controls/settings_radio_group.js b/chrome/browser/resources/settings/controls/settings_radio_group.js
|
| index f0bedec092bfa7c54fb40091c3a26c664cba75d6..1836dc22e91542cdfc8477c74fd20a6758989935 100644
|
| --- a/chrome/browser/resources/settings/controls/settings_radio_group.js
|
| +++ b/chrome/browser/resources/settings/controls/settings_radio_group.js
|
| @@ -21,11 +21,7 @@ Polymer({
|
| /**
|
| * IronSelectableBehavior selected attribute.
|
| */
|
| - selected: {
|
| - type: String,
|
| - notify: true,
|
| - observer: 'selectedChanged_'
|
| - },
|
| + selected: {type: String, notify: true, observer: 'selectedChanged_'},
|
| },
|
|
|
| observers: [
|
| @@ -34,7 +30,7 @@ Polymer({
|
|
|
| /** @private */
|
| prefChanged_: function() {
|
| - var pref = /** @type {!chrome.settingsPrivate.PrefObject} */(this.pref);
|
| + var pref = /** @type {!chrome.settingsPrivate.PrefObject} */ (this.pref);
|
| this.selected = Settings.PrefUtil.prefToString(pref);
|
| },
|
|
|
| @@ -42,7 +38,7 @@ Polymer({
|
| selectedChanged_: function(selected) {
|
| if (!this.pref)
|
| return;
|
| - this.set('pref.value',
|
| - Settings.PrefUtil.stringToPrefValue(selected, this.pref));
|
| + this.set(
|
| + 'pref.value', Settings.PrefUtil.stringToPrefValue(selected, this.pref));
|
| },
|
| });
|
|
|