Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: chrome/browser/webdata/web_data_service_unittest.cc

Issue 1701012: Cleanup: Order the methods in WebDataService. Rename a method to match current style. (Closed)
Patch Set: Fix test compile. Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/webdata/web_data_service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_data_service_unittest.cc
diff --git a/chrome/browser/webdata/web_data_service_unittest.cc b/chrome/browser/webdata/web_data_service_unittest.cc
index 80688a8971191ddfffe861841ad4576a08a00e5e..fa65ff8cb2c57bec29d44d077030f07c82e0a7d3 100644
--- a/chrome/browser/webdata/web_data_service_unittest.cc
+++ b/chrome/browser/webdata/web_data_service_unittest.cc
@@ -224,7 +224,7 @@ TEST_F(WebDataServiceAutofillTest, FormFillAdd) {
std::vector<webkit_glue::FormField> form_fields;
AppendFormField(name1_, value1_, &form_fields);
AppendFormField(name2_, value2_, &form_fields);
- wds_->AddFormFieldValues(form_fields);
+ wds_->AddFormFields(form_fields);
// The event will be signaled when the mock observer is notified.
done_event_.TimedWait(test_timeout_);
@@ -249,7 +249,7 @@ TEST_F(WebDataServiceAutofillTest, FormFillRemoveOne) {
WillOnce(SignalEvent(&done_event_));
std::vector<webkit_glue::FormField> form_fields;
AppendFormField(name1_, value1_, &form_fields);
- wds_->AddFormFieldValues(form_fields);
+ wds_->AddFormFields(form_fields);
// The event will be signaled when the mock observer is notified.
done_event_.TimedWait(test_timeout_);
@@ -281,7 +281,7 @@ TEST_F(WebDataServiceAutofillTest,FormFillRemoveMany) {
std::vector<webkit_glue::FormField> form_fields;
AppendFormField(name1_, value1_, &form_fields);
AppendFormField(name2_, value2_, &form_fields);
- wds_->AddFormFieldValues(form_fields);
+ wds_->AddFormFields(form_fields);
// The event will be signaled when the mock observer is notified.
done_event_.TimedWait(test_timeout_);
« no previous file with comments | « chrome/browser/webdata/web_data_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698