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/autocomplete_history_manager.cc | |
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/autocomplete_history_manager.cc')
-rw-r--r-- | chrome/browser/autocomplete_history_manager.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/autocomplete_history_manager.cc b/chrome/browser/autocomplete_history_manager.cc index bbc3387..a5ece90 100644 --- a/chrome/browser/autocomplete_history_manager.cc +++ b/chrome/browser/autocomplete_history_manager.cc @@ -80,7 +80,7 @@ AutocompleteHistoryManager::AutocompleteHistoryManager( profile_ = tab_contents->profile(); // May be NULL in unit tests. web_data_service_ = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); - autofill_enabled_.Init(prefs::kAutoFillEnabled, profile_->GetPrefs(), NULL); + autofill_enabled_.Init(prefs::kAutofillEnabled, profile_->GetPrefs(), NULL); } AutocompleteHistoryManager::~AutocompleteHistoryManager() { @@ -91,7 +91,7 @@ bool AutocompleteHistoryManager::OnMessageReceived( const IPC::Message& message) { bool handled = true; IPC_BEGIN_MESSAGE_MAP(AutocompleteHistoryManager, message) - IPC_MESSAGE_HANDLER(AutoFillHostMsg_RemoveAutocompleteEntry, + IPC_MESSAGE_HANDLER(AutofillHostMsg_RemoveAutocompleteEntry, OnRemoveAutocompleteEntry) IPC_MESSAGE_UNHANDLED(handled = false) IPC_END_MESSAGE_MAP() @@ -200,7 +200,7 @@ AutocompleteHistoryManager::AutocompleteHistoryManager( pending_query_handle_(0), query_id_(0) { autofill_enabled_.Init( - prefs::kAutoFillEnabled, profile_->GetPrefs(), NULL); + prefs::kAutofillEnabled, profile_->GetPrefs(), NULL); } void AutocompleteHistoryManager::CancelPendingQuery() { @@ -215,7 +215,7 @@ void AutocompleteHistoryManager::CancelPendingQuery() { void AutocompleteHistoryManager::SendSuggestions( const std::vector<string16>* suggestions) { if (suggestions) { - // Combine AutoFill and Autocomplete values into values and labels. + // Combine Autofill and Autocomplete values into values and labels. for (size_t i = 0; i < suggestions->size(); ++i) { bool unique = true; for (size_t j = 0; j < autofill_values_.size(); ++j) { @@ -235,7 +235,7 @@ void AutocompleteHistoryManager::SendSuggestions( } } - Send(new AutoFillMsg_SuggestionsReturned(routing_id(), + Send(new AutofillMsg_SuggestionsReturned(routing_id(), query_id_, autofill_values_, autofill_labels_, |