| Index: chrome/browser/resources/settings/about_page/channel_switcher_dialog.js
|
| diff --git a/chrome/browser/resources/settings/about_page/channel_switcher_dialog.js b/chrome/browser/resources/settings/about_page/channel_switcher_dialog.js
|
| index ceb0322b676f3b1d9d348220639a8d61dccfb4fb..0892b22220bafd49e64e1d706def57ecc3b75fa6 100644
|
| --- a/chrome/browser/resources/settings/about_page/channel_switcher_dialog.js
|
| +++ b/chrome/browser/resources/settings/about_page/channel_switcher_dialog.js
|
| @@ -48,14 +48,14 @@ Polymer({
|
| /** @override */
|
| ready: function() {
|
| this.browserProxy_ = settings.AboutPageBrowserProxyImpl.getInstance();
|
| - this.browserProxy_.getChannelInfo().then(function(info) {
|
| + this.browserProxy_.getChannelInfo().then(info => {
|
| this.currentChannel_ = info.currentChannel;
|
| this.targetChannel_ = info.targetChannel;
|
| // Pre-populate radio group with target channel.
|
| var radioGroup = this.$$('paper-radio-group');
|
| radioGroup.select(this.targetChannel_);
|
| radioGroup.focus();
|
| - }.bind(this));
|
| + });
|
| },
|
|
|
| /** @override */
|
|
|