diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-10 12:29:21 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-10 12:29:21 +0000 |
commit | e90c2256aed9c209b5a1cc5db4ef0975ab64490b (patch) | |
tree | 486c9924987a95ac33a0dc4f6054a678b717ef7c /chrome/browser/webdata/web_data_service.h | |
parent | 987d99ce11821cfd4af42b3a718d1dbfe8587817 (diff) | |
download | chromium_src-e90c2256aed9c209b5a1cc5db4ef0975ab64490b.zip chromium_src-e90c2256aed9c209b5a1cc5db4ef0975ab64490b.tar.gz chromium_src-e90c2256aed9c209b5a1cc5db4ef0975ab64490b.tar.bz2 |
autofill: Rename AutoFillProfile to AutofillProfile.
BUG=72758
TEST=existing unit_tests
Review URL: http://codereview.chromium.org/6658030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77630 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/webdata/web_data_service.h')
-rw-r--r-- | chrome/browser/webdata/web_data_service.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/chrome/browser/webdata/web_data_service.h b/chrome/browser/webdata/web_data_service.h index 8e8b211..2dde084 100644 --- a/chrome/browser/webdata/web_data_service.h +++ b/chrome/browser/webdata/web_data_service.h @@ -19,7 +19,7 @@ #include "webkit/glue/form_field.h" class AutofillChange; -class AutoFillProfile; +class AutofillProfile; class CreditCard; class GURL; #if defined(OS_WIN) @@ -70,8 +70,8 @@ typedef enum { TOKEN_RESULT, // WDResult<std::vector<std::string>> AUTOFILL_VALUE_RESULT, // WDResult<std::vector<string16>> AUTOFILL_CHANGES, // WDResult<std::vector<AutofillChange>> - AUTOFILL_PROFILE_RESULT, // WDResult<AutoFillProfile> - AUTOFILL_PROFILES_RESULT, // WDResult<std::vector<AutoFillProfile*>> + AUTOFILL_PROFILE_RESULT, // WDResult<AutofillProfile> + AUTOFILL_PROFILES_RESULT, // WDResult<std::vector<AutofillProfile*>> AUTOFILL_CREDITCARD_RESULT, // WDResult<CreditCard> AUTOFILL_CREDITCARDS_RESULT // WDResult<std::vector<CreditCard*>> } WDResultType; @@ -439,20 +439,20 @@ class WebDataService const string16& value); // Schedules a task to add an AutoFill profile to the web database. - void AddAutoFillProfile(const AutoFillProfile& profile); + void AddAutofillProfile(const AutofillProfile& profile); // Schedules a task to update an AutoFill profile in the web database. - void UpdateAutoFillProfile(const AutoFillProfile& profile); + void UpdateAutofillProfile(const AutofillProfile& profile); // Schedules a task to remove an AutoFill profile from the web database. // |guid| is the identifer of the profile to remove. - void RemoveAutoFillProfile(const std::string& guid); + void RemoveAutofillProfile(const std::string& guid); // Initiates the request for all AutoFill profiles. The method // OnWebDataServiceRequestDone of |consumer| gets called when the request is // finished, with the profiles included in the argument |result|. The // consumer owns the profiles. - Handle GetAutoFillProfiles(WebDataServiceConsumer* consumer); + Handle GetAutofillProfiles(WebDataServiceConsumer* consumer); // Schedules a task to add credit card to the web database. void AddCreditCard(const CreditCard& credit_card); @@ -471,7 +471,7 @@ class WebDataService Handle GetCreditCards(WebDataServiceConsumer* consumer); // Removes AutoFill records from the database. - void RemoveAutoFillProfilesAndCreditCardsModifiedBetween( + void RemoveAutofillProfilesAndCreditCardsModifiedBetween( const base::Time& delete_begin, const base::Time& delete_end); @@ -599,15 +599,15 @@ class WebDataService GenericRequest2<base::Time, base::Time>* request); void RemoveFormValueForElementNameImpl( GenericRequest2<string16, string16>* request); - void AddAutoFillProfileImpl(GenericRequest<AutoFillProfile>* request); - void UpdateAutoFillProfileImpl(GenericRequest<AutoFillProfile>* request); - void RemoveAutoFillProfileImpl(GenericRequest<std::string>* request); - void GetAutoFillProfilesImpl(WebDataRequest* request); + void AddAutofillProfileImpl(GenericRequest<AutofillProfile>* request); + void UpdateAutofillProfileImpl(GenericRequest<AutofillProfile>* request); + void RemoveAutofillProfileImpl(GenericRequest<std::string>* request); + void GetAutofillProfilesImpl(WebDataRequest* request); void AddCreditCardImpl(GenericRequest<CreditCard>* request); void UpdateCreditCardImpl(GenericRequest<CreditCard>* request); void RemoveCreditCardImpl(GenericRequest<std::string>* request); void GetCreditCardsImpl(WebDataRequest* request); - void RemoveAutoFillProfilesAndCreditCardsModifiedBetweenImpl( + void RemoveAutofillProfilesAndCreditCardsModifiedBetweenImpl( GenericRequest2<base::Time, base::Time>* request); // True once initialization has started. |