diff options
author | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-06 00:35:09 +0000 |
---|---|---|
committer | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-06 00:35:09 +0000 |
commit | d60677ca2916e3869a643b904f54b3b2c1f266cc (patch) | |
tree | d352191de550668fd38927f6f2fdb607369393c0 /chrome/browser/autofill/autofill_dialog_controller_mac.h | |
parent | ebc1b688ec329581638e14253cc4fabb500a37a6 (diff) | |
download | chromium_src-d60677ca2916e3869a643b904f54b3b2c1f266cc.zip chromium_src-d60677ca2916e3869a643b904f54b3b2c1f266cc.tar.gz chromium_src-d60677ca2916e3869a643b904f54b3b2c1f266cc.tar.bz2 |
AutoFill Mac preference for enabling Address Book "me" card usage.
Adds a boolean preference to specify whether to use the Mac user's Address Book "me" card as a source of information for AutoFill addresses. This CL adds the Mac UI and the preference setup only. It does not cover the functionality for fetching the actual Address Book data. The changes to AutoFillDialog.xib add the checkbox UI and bind the checkbox to the |auxiliaryEnabled| property in the controller class. The |addressSection_| outlet is set to the spacer following the new checkbox. Unit tests are included for the addition of the preference at the mac dialog controller level.
BUG=36496
TEST=PersonalDataManagerTest, AutoFillDialogControllerTest
Review URL: http://codereview.chromium.org/668171
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40803 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_dialog_controller_mac.h')
-rw-r--r-- | chrome/browser/autofill/autofill_dialog_controller_mac.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/chrome/browser/autofill/autofill_dialog_controller_mac.h b/chrome/browser/autofill/autofill_dialog_controller_mac.h index 2ea9c54..3f60b3c 100644 --- a/chrome/browser/autofill/autofill_dialog_controller_mac.h +++ b/chrome/browser/autofill/autofill_dialog_controller_mac.h @@ -14,6 +14,7 @@ @class AutoFillAddressViewController; @class AutoFillCreditCardViewController; +class Profile; @class SectionSeparatorView; @class WindowSizeAutosaver; @@ -40,10 +41,15 @@ AutoFillDialogObserver* observer_; // Weak, not retained. std::vector<AutoFillProfile> profiles_; std::vector<CreditCard> creditCards_; - + Profile* profile_; // Weak, not retained. + BOOL auxiliaryEnabled_; scoped_nsobject<WindowSizeAutosaver> sizeSaver_; } +// Property representing state of Address Book "me" card usage. Checkbox is +// bound to this in nib. +@property (nonatomic) BOOL auxiliaryEnabled; + // Main interface for displaying an application modal autofill dialog on screen. // This class method creates a new |AutoFillDialogController| and runs it as a // modal dialog. The controller autoreleases itself when the dialog is closed. @@ -53,9 +59,11 @@ // information. // |profiles| and |creditCards| must have non-NULL entries (zero or more). // These provide the initial data that is presented to the user. +// |profile| must be non-NULL. + (void)showAutoFillDialogWithObserver:(AutoFillDialogObserver*)observer autoFillProfiles:(const std::vector<AutoFillProfile*>&)profiles - creditCards:(const std::vector<CreditCard*>&)creditCards; + creditCards:(const std::vector<CreditCard*>&)creditCards + profile:(Profile*)profile; // IBActions for the dialog buttons. - (IBAction)save:(id)sender; @@ -87,11 +95,13 @@ + (AutoFillDialogController*)controllerWithObserver: (AutoFillDialogObserver*)observer autoFillProfiles:(const std::vector<AutoFillProfile*>&)profiles - creditCards:(const std::vector<CreditCard*>&)creditCards; + creditCards:(const std::vector<CreditCard*>&)creditCards + profile:(Profile*)profile; - (id)initWithObserver:(AutoFillDialogObserver*)observer autoFillProfiles:(const std::vector<AutoFillProfile*>&)profiles - creditCards:(const std::vector<CreditCard*>&)creditCards; + creditCards:(const std::vector<CreditCard*>&)creditCards + profile:(Profile*)profile; - (NSMutableArray*)addressFormViewControllers; - (NSMutableArray*)creditCardFormViewControllers; - (void)closeDialog; |