diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-20 22:01:17 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-20 22:01:17 +0000 |
commit | 9c6d006761c3313f7fe81ff304d10a6c02400622 (patch) | |
tree | 238158837a6f8800c5d2a0a2faa9434fffbbd718 /chrome/browser/autofill/personal_data_manager.h | |
parent | 58555ce035571ee7d8620dd3e57cc7bf1adfd9b2 (diff) | |
download | chromium_src-9c6d006761c3313f7fe81ff304d10a6c02400622.zip chromium_src-9c6d006761c3313f7fe81ff304d10a6c02400622.tar.gz chromium_src-9c6d006761c3313f7fe81ff304d10a6c02400622.tar.bz2 |
AutoFill: Segregate profile and credit card filling.
* Refactor suggestions filling into Get[Profile,CreditCard]Suggestions.
* Don't fill the default credit card when the AutoFill shortcut is initiated.
* Don't fill the default credit card when filling the profile.
BUG=41334
TEST=none
Review URL: http://codereview.chromium.org/1619029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45087 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/personal_data_manager.h')
-rw-r--r-- | chrome/browser/autofill/personal_data_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autofill/personal_data_manager.h b/chrome/browser/autofill/personal_data_manager.h index 1c161d9..a5903a9 100644 --- a/chrome/browser/autofill/personal_data_manager.h +++ b/chrome/browser/autofill/personal_data_manager.h @@ -156,7 +156,7 @@ class PersonalDataManager : public WebDataServiceConsumer, // Initializes the object if needed. This should be called at the beginning // of all the public functions to make sure that the object has been properly // initialized before use. - void InitializeIfNeeded(); + virtual void InitializeIfNeeded(); // This will create and reserve a new unique ID for a profile. int CreateNextUniqueID(std::set<int>* unique_ids); |