| Index: chrome/browser/resources/options2/autofill_edit_address_overlay.js
 | 
| diff --git a/chrome/browser/resources/options2/autofill_edit_address_overlay.js b/chrome/browser/resources/options2/autofill_edit_address_overlay.js
 | 
| index c66be74ac860a7a630d2d4715efdd69c7a8b45fe..bcf3bdcff3aaf513f73624b28200ad61904f91be 100644
 | 
| --- a/chrome/browser/resources/options2/autofill_edit_address_overlay.js
 | 
| +++ b/chrome/browser/resources/options2/autofill_edit_address_overlay.js
 | 
| @@ -239,7 +239,7 @@ cr.define('options', function() {
 | 
|          countryCode: '',
 | 
|          name: '---',
 | 
|          disabled: true
 | 
| -      }
 | 
| +      };
 | 
|        countries.unshift(emptyCountry, defaultCountry, separator);
 | 
|  
 | 
|        // Add the countries to the country <select> list.
 | 
| @@ -247,7 +247,7 @@ cr.define('options', function() {
 | 
|        for (var i = 0; i < countries.length; i++) {
 | 
|          var country = new Option(countries[i].name, countries[i].countryCode);
 | 
|          country.disabled = countries[i].disabled;
 | 
| -        countryList.appendChild(country)
 | 
| +        countryList.appendChild(country);
 | 
|        }
 | 
|      },
 | 
|  
 | 
| 
 |