diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 01:07:01 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 01:07:01 +0000 |
commit | 663bd9e1137dacddb0e44fc1f3b687144f722fe7 (patch) | |
tree | 00145dd78a68429313d8aaf96661397750489f72 /chrome/browser/autofill/autofill_manager.h | |
parent | 734fc97bcd0d885de8739c4d611cedf0e2f4ec4c (diff) | |
download | chromium_src-663bd9e1137dacddb0e44fc1f3b687144f722fe7.zip chromium_src-663bd9e1137dacddb0e44fc1f3b687144f722fe7.tar.gz chromium_src-663bd9e1137dacddb0e44fc1f3b687144f722fe7.tar.bz2 |
autofill: Rename all the entries remaining with AutoFill to Autofill.
R=isherman@chromium.org,dhollowa@chromium.org
BUG=72758
TEST=existing unit_tests
Review URL: http://codereview.chromium.org/6688053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_manager.h')
-rw-r--r-- | chrome/browser/autofill/autofill_manager.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h index 7770d8c..8d47351 100644 --- a/chrome/browser/autofill/autofill_manager.h +++ b/chrome/browser/autofill/autofill_manager.h @@ -17,7 +17,7 @@ #include "chrome/browser/autofill/personal_data_manager.h" #include "content/browser/tab_contents/tab_contents_observer.h" -class AutoFillCCInfoBarDelegate; +class AutofillCCInfoBarDelegate; class AutofillProfile; class AutofillMetrics; class CreditCard; @@ -50,7 +50,7 @@ class AutofillManager : public TabContentsObserver, const ViewHostMsg_FrameNavigate_Params& params); virtual bool OnMessageReceived(const IPC::Message& message); - // Called by the AutoFillCCInfoBarDelegate when the user interacts with the + // Called by the AutofillCCInfoBarDelegate when the user interacts with the // infobar. virtual void OnInfoBarClosed(bool should_save); @@ -62,8 +62,8 @@ class AutofillManager : public TabContentsObserver, AutofillDownloadManager::AutofillRequestType request_type, int http_error); - // Returns the value of the AutoFillEnabled pref. - virtual bool IsAutoFillEnabled() const; + // Returns the value of the AutofillEnabled pref. + virtual bool IsAutofillEnabled() const; // Imports the form data, submitted by the user, into |personal_data_|. void ImportFormData(const FormStructure& submitted_form); @@ -103,16 +103,16 @@ class AutofillManager : public TabContentsObserver, private: void OnFormSubmitted(const webkit_glue::FormData& form); void OnFormsSeen(const std::vector<webkit_glue::FormData>& forms); - void OnQueryFormFieldAutoFill(int query_id, + void OnQueryFormFieldAutofill(int query_id, const webkit_glue::FormData& form, const webkit_glue::FormField& field); - void OnFillAutoFillFormData(int query_id, + void OnFillAutofillFormData(int query_id, const webkit_glue::FormData& form, const webkit_glue::FormField& field, int unique_id); - void OnShowAutoFillDialog(); - void OnDidFillAutoFillFormData(); - void OnDidShowAutoFillSuggestions(); + void OnShowAutofillDialog(); + void OnDidFillAutofillFormData(); + void OnDidShowAutofillSuggestions(); // Fills |host| with the RenderViewHost for this tab. // Returns false if Autofill is disabled or if the host is unavailable. @@ -208,7 +208,7 @@ class AutofillManager : public TabContentsObserver, // The InfoBar that asks for permission to store credit card information. // Deletes itself when closed. - AutoFillCCInfoBarDelegate* cc_infobar_; + AutofillCCInfoBarDelegate* cc_infobar_; // The imported credit card that should be saved if the user accepts the // infobar. @@ -230,7 +230,7 @@ class AutofillManager : public TabContentsObserver, FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAddressAndCreditCardForm); FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillFormWithMultipleSections); FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillFormWithMultipleEmails); - FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAutoFilledForm); + FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAutofilledForm); FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillPhoneNumber); FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormChangesRemoveField); FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormChangesAddField); |