| Index: chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.js
|
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.js b/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.js
|
| index 06e84498c4728e62209068e2c135f003df6665ce..ca28ebf668a7f5abbd856fb69e02a74280c3ac02 100644
|
| --- a/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.js
|
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.js
|
| @@ -50,8 +50,7 @@ Polymer({
|
|
|
| /** @override */
|
| attached: function() {
|
| - this.countryInfo =
|
| - settings.address.CountryDetailManagerImpl.getInstance();
|
| + this.countryInfo = settings.address.CountryDetailManagerImpl.getInstance();
|
| this.countryInfo.getCountryList().then(function(countryList) {
|
| this.countries_ = countryList;
|
|
|
| @@ -106,7 +105,7 @@ Polymer({
|
|
|
| this.fire('on-update-address-wrapper'); // For easier testing.
|
|
|
| - var dialog = /** @type {HTMLDialogElement} */(this.$.dialog);
|
| + var dialog = /** @type {HTMLDialogElement} */ (this.$.dialog);
|
| if (!dialog.open)
|
| dialog.showModal();
|
| }.bind(this));
|
|
|