Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

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: Logic fix. Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/options/deletable_item_list.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
},
« no previous file with comments | « no previous file | chrome/browser/resources/options/deletable_item_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698