diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-26 22:38:05 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-26 22:38:05 +0000 |
commit | 42866d95e8d423cc4ae8b034f39516e36f55e68b (patch) | |
tree | 8698f1176b86e4b90cbc9972b0e0a7f3ab52702b /chrome/browser/autocomplete_history_manager.cc | |
parent | 1a8374f836bc82ad2c92dc7395733d7af983f572 (diff) | |
download | chromium_src-42866d95e8d423cc4ae8b034f39516e36f55e68b.zip chromium_src-42866d95e8d423cc4ae8b034f39516e36f55e68b.tar.gz chromium_src-42866d95e8d423cc4ae8b034f39516e36f55e68b.tar.bz2 |
Cleanup: Order the methods in WebDataService. Rename a method to match current style.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/1701012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45636 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete_history_manager.cc')
-rw-r--r-- | chrome/browser/autocomplete_history_manager.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/autocomplete_history_manager.cc b/chrome/browser/autocomplete_history_manager.cc index 7626f9c..e5d96a7 100644 --- a/chrome/browser/autocomplete_history_manager.cc +++ b/chrome/browser/autocomplete_history_manager.cc @@ -123,8 +123,7 @@ void AutocompleteHistoryManager::StoreFormEntriesInWebDatabase( values.push_back(*iter); } - profile()->GetWebDataService(Profile::EXPLICIT_ACCESS)-> - AddFormFieldValues(values); + profile()->GetWebDataService(Profile::EXPLICIT_ACCESS)->AddFormFields(values); } void AutocompleteHistoryManager::SendSuggestions(const WDTypedResult* result) { |