Index: chrome/browser/resources/options/autofill_options.js |
diff --git a/chrome/browser/resources/options/autofill_options.js b/chrome/browser/resources/options/autofill_options.js |
index bdc4ab7ddd880c18cab6b5a9aea25170ef041f12..2e129bb62ccc405b78d677799e53d4a52b90acf1 100644 |
--- a/chrome/browser/resources/options/autofill_options.js |
+++ b/chrome/browser/resources/options/autofill_options.js |
@@ -5,7 +5,6 @@ |
cr.define('options', function() { |
const OptionsPage = options.OptionsPage; |
const ArrayDataModel = cr.ui.ArrayDataModel; |
- const ListSingleSelectionModel = cr.ui.ListSingleSelectionModel; |
///////////////////////////////////////////////////////////////////////////// |
// AutoFillOptions class: |
@@ -65,7 +64,6 @@ cr.define('options', function() { |
createAddressList_: function() { |
this.addressList_ = $('address-list'); |
options.autoFillOptions.AutoFillAddressList.decorate(this.addressList_); |
- this.addressList_.selectionModel = new ListSingleSelectionModel; |
this.addressList_.autoExpands = true; |
}, |
@@ -77,7 +75,6 @@ cr.define('options', function() { |
this.creditCardList_ = $('creditcard-list'); |
options.autoFillOptions.AutoFillCreditCardList.decorate( |
this.creditCardList_); |
- this.creditCardList_.selectionModel = new ListSingleSelectionModel; |
this.creditCardList_.autoExpands = true; |
}, |