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/automation/testing_automation_provider.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/automation/testing_automation_provider.h')
-rw-r--r-- | chrome/browser/automation/testing_automation_provider.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h index b6b369a..0668dcf 100644 --- a/chrome/browser/automation/testing_automation_provider.h +++ b/chrome/browser/automation/testing_automation_provider.h @@ -633,13 +633,13 @@ class TestingAutomationProvider : public AutomationProvider, // Get the profiles that are currently saved to the DB. // Uses the JSON interface for input/output. - void GetAutoFillProfile(Browser* browser, + void GetAutofillProfile(Browser* browser, DictionaryValue* args, IPC::Message* reply_message); - // Fill in an AutoFillProfile with the given profile information. + // Fill in an AutofillProfile with the given profile information. // Uses the JSON interface for input/output. - void FillAutoFillProfile(Browser* browser, + void FillAutofillProfile(Browser* browser, DictionaryValue* args, IPC::Message* reply_message); @@ -678,7 +678,7 @@ class TestingAutomationProvider : public AutomationProvider, // Args: // profiles/cards: the ListValue of profiles/credit cards to translate. // error_message: a pointer to the return string in case of error. - static std::vector<AutoFillProfile> GetAutoFillProfilesFromList( + static std::vector<AutofillProfile> GetAutofillProfilesFromList( const ListValue& profiles, std::string* error_message); static std::vector<CreditCard> GetCreditCardsFromList( const ListValue& cards, std::string* error_message); @@ -686,8 +686,8 @@ class TestingAutomationProvider : public AutomationProvider, // The opposite of the above: translates from the internal data structure // for profiles and credit cards to a ListValue of DictionaryValues. The // caller owns the returned object. - static ListValue* GetListFromAutoFillProfiles( - const std::vector<AutoFillProfile*>& autofill_profiles); + static ListValue* GetListFromAutofillProfiles( + const std::vector<AutofillProfile*>& autofill_profiles); static ListValue* GetListFromCreditCards( const std::vector<CreditCard*>& credit_cards); |