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

Side by Side Diff: chrome/browser/autofill/autofill_dialog_controller_mac.mm

Issue 6082001: Autofill saves duplicate profiles and credit card info in preferences (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/autofill/autofill_dialog_controller_mac.h" 5 #import "chrome/browser/autofill/autofill_dialog_controller_mac.h"
6 #include "app/l10n_util.h" 6 #include "app/l10n_util.h"
7 #include "app/resource_bundle.h" 7 #include "app/resource_bundle.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "base/mac_util.h" 9 #include "base/mac_util.h"
10 #include "base/sys_string_conversions.h" 10 #include "base/sys_string_conversions.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 // Asyncronous handler for when PersonalDataManager data changes. The 87 // Asyncronous handler for when PersonalDataManager data changes. The
88 // personal data manager notifies the dialog with this method when the 88 // personal data manager notifies the dialog with this method when the
89 // data has changed. 89 // data has changed.
90 - (void)onPersonalDataChanged:(const std::vector<AutoFillProfile*>&)profiles 90 - (void)onPersonalDataChanged:(const std::vector<AutoFillProfile*>&)profiles
91 creditCards:(const std::vector<CreditCard*>&)creditCards; 91 creditCards:(const std::vector<CreditCard*>&)creditCards;
92 92
93 // Called upon changes to AutoFill preferences that should be reflected in the 93 // Called upon changes to AutoFill preferences that should be reflected in the
94 // UI. 94 // UI.
95 - (void)preferenceDidChange:(const std::string&)preferenceName; 95 - (void)preferenceDidChange:(const std::string&)preferenceName;
96 96
97 // Adjust the selected index when underlying data changes.
98 // Selects the previous row if possible, else current row, else deselect all.
99 - (void) adjustSelectionOnDelete:(NSInteger)selectedRow;
100
101 // Adjust the selected index when underlying data changes.
102 // Selects the current row if possible, else previous row, else deselect all.
103 - (void) adjustSelectionOnReload:(NSInteger)selectedRow;
104
97 // Returns true if |row| is an index to a valid profile in |tableView_|, and 105 // Returns true if |row| is an index to a valid profile in |tableView_|, and
98 // false otherwise. 106 // false otherwise.
99 - (BOOL)isProfileRow:(NSInteger)row; 107 - (BOOL)isProfileRow:(NSInteger)row;
100 108
101 // Returns true if |row| is an index to the profile group row in |tableView_|, 109 // Returns true if |row| is an index to the profile group row in |tableView_|,
102 // and false otherwise. 110 // and false otherwise.
103 - (BOOL)isProfileGroupRow:(NSInteger)row; 111 - (BOOL)isProfileGroupRow:(NSInteger)row;
104 112
105 // Returns true if |row| is an index to a valid credit card in |tableView_|, and 113 // Returns true if |row| is an index to a valid credit card in |tableView_|, and
106 // false otherwise. 114 // false otherwise.
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 if ([self isProfileRow:i]) { 401 if ([self isProfileRow:i]) {
394 profiles_.erase( 402 profiles_.erase(
395 profiles_.begin() + [self profileIndexFromRow:i]); 403 profiles_.begin() + [self profileIndexFromRow:i]);
396 } else if ([self isCreditCardRow:i]) { 404 } else if ([self isCreditCardRow:i]) {
397 creditCards_.erase( 405 creditCards_.erase(
398 creditCards_.begin() + [self creditCardIndexFromRow:i]); 406 creditCards_.begin() + [self creditCardIndexFromRow:i]);
399 } 407 }
400 } 408 }
401 409
402 // Select the previous row if possible, else current row, else deselect all. 410 // Select the previous row if possible, else current row, else deselect all.
403 if ([self tableView:tableView_ shouldSelectRow:selectedRow-1]) { 411 [self adjustSelectionOnDelete:selectedRow];
404 [tableView_ selectRowIndexes:[NSIndexSet indexSetWithIndex:selectedRow-1]
405 byExtendingSelection:NO];
406 } else if ([self tableView:tableView_ shouldSelectRow:selectedRow]) {
407 [tableView_ selectRowIndexes:[NSIndexSet indexSetWithIndex:selectedRow]
408 byExtendingSelection:NO];
409 } else {
410 [tableView_ deselectAll:self];
411 }
412 412
413 // Saving will save to the PDM and the table will refresh when PDM sends 413 // Saving will save to the PDM and the table will refresh when PDM sends
414 // notification that the underlying model has changed. 414 // notification that the underlying model has changed.
415 [self save]; 415 [self save];
416 } 416 }
417 417
418 // Edits the selected item, either address or credit card depending on the item 418 // Edits the selected item, either address or credit card depending on the item
419 // selected. 419 // selected.
420 - (IBAction)editSelection:(id)sender { 420 - (IBAction)editSelection:(id)sender {
421 NSInteger selectedRow = [tableView_ selectedRow]; 421 NSInteger selectedRow = [tableView_ selectedRow];
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 for (std::vector<AutoFillProfile*>::const_iterator iter = profiles.begin(); 792 for (std::vector<AutoFillProfile*>::const_iterator iter = profiles.begin();
793 iter != profiles.end(); ++iter) 793 iter != profiles.end(); ++iter)
794 profiles_.push_back(**iter); 794 profiles_.push_back(**iter);
795 795
796 // Make local copy of |creditCards|. 796 // Make local copy of |creditCards|.
797 creditCards_.clear(); 797 creditCards_.clear();
798 for (std::vector<CreditCard*>::const_iterator iter = creditCards.begin(); 798 for (std::vector<CreditCard*>::const_iterator iter = creditCards.begin();
799 iter != creditCards.end(); ++iter) 799 iter != creditCards.end(); ++iter)
800 creditCards_.push_back(**iter); 800 creditCards_.push_back(**iter);
801 801
802 [self adjustSelectionOnReload:[tableView_ selectedRow]];
802 [tableView_ reloadData]; 803 [tableView_ reloadData];
803 } 804 }
804 805
805 - (void)preferenceDidChange:(const std::string&)preferenceName { 806 - (void)preferenceDidChange:(const std::string&)preferenceName {
806 if (preferenceName == prefs::kAutoFillEnabled) { 807 if (preferenceName == prefs::kAutoFillEnabled) {
807 [self setAutoFillEnabled:autoFillEnabled_.GetValue()]; 808 [self setAutoFillEnabled:autoFillEnabled_.GetValue()];
808 [self setAutoFillManaged:autoFillEnabled_.IsManaged()]; 809 [self setAutoFillManaged:autoFillEnabled_.IsManaged()];
809 [self setAutoFillManagedAndDisabled: 810 [self setAutoFillManagedAndDisabled:
810 autoFillEnabled_.IsManaged() && !autoFillEnabled_.GetValue()]; 811 autoFillEnabled_.IsManaged() && !autoFillEnabled_.GetValue()];
811 } else if (preferenceName == prefs::kAutoFillAuxiliaryProfilesEnabled) { 812 } else if (preferenceName == prefs::kAutoFillAuxiliaryProfilesEnabled) {
812 [self setAuxiliaryEnabled:auxiliaryEnabled_.GetValue()]; 813 [self setAuxiliaryEnabled:auxiliaryEnabled_.GetValue()];
813 } else { 814 } else {
814 NOTREACHED(); 815 NOTREACHED();
815 } 816 }
816 } 817 }
817 818
819 - (void) adjustSelectionOnDelete:(NSInteger)selectedRow {
820 if ([self tableView:tableView_ shouldSelectRow:selectedRow-1]) {
821 [tableView_ selectRowIndexes:[NSIndexSet indexSetWithIndex:selectedRow-1]
822 byExtendingSelection:NO];
823 } else if ([self tableView:tableView_ shouldSelectRow:selectedRow]) {
824 [tableView_ selectRowIndexes:[NSIndexSet indexSetWithIndex:selectedRow]
825 byExtendingSelection:NO];
826 } else {
827 [tableView_ deselectAll:self];
828 }
829 }
830
831 - (void) adjustSelectionOnReload:(NSInteger)selectedRow {
832 if ([self tableView:tableView_ shouldSelectRow:selectedRow]) {
833 [tableView_ selectRowIndexes:[NSIndexSet indexSetWithIndex:selectedRow]
834 byExtendingSelection:NO];
835 } else if ([self tableView:tableView_ shouldSelectRow:selectedRow-1]) {
836 [tableView_ selectRowIndexes:[NSIndexSet indexSetWithIndex:selectedRow-1]
837 byExtendingSelection:NO];
838 } else {
839 [tableView_ deselectAll:self];
840 }
841 }
842
818 - (BOOL)isProfileRow:(NSInteger)row { 843 - (BOOL)isProfileRow:(NSInteger)row {
819 if (row > 0 && static_cast<size_t>(row) <= profiles_.size()) 844 if (row > 0 && static_cast<size_t>(row) <= profiles_.size())
820 return YES; 845 return YES;
821 return NO; 846 return NO;
822 } 847 }
823 848
824 - (BOOL)isProfileGroupRow:(NSInteger)row { 849 - (BOOL)isProfileGroupRow:(NSInteger)row {
825 if (row == 0) 850 if (row == 0)
826 return YES; 851 return YES;
827 return NO; 852 return NO;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 if (!image) { 930 if (!image) {
906 image = rb.GetNativeImageNamed(IDR_INPUT_GOOD); 931 image = rb.GetNativeImageNamed(IDR_INPUT_GOOD);
907 DCHECK(image); 932 DCHECK(image);
908 return image; 933 return image;
909 } 934 }
910 935
911 return nil; 936 return nil;
912 } 937 }
913 938
914 @end 939 @end
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/autofill/personal_data_manager.cc » ('j') | chrome/browser/autofill/personal_data_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698