Chromium Code Reviews

Unified Diff: chrome/browser/resources/options/autofill_options.js

Issue 6029013: DOMUI: Make Autofill profile lists multi-select and implementing deleting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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;
},

Powered by Google App Engine