Index: components/autofill/core/browser/webdata/autofill_table_unittest.cc |
diff --git a/components/autofill/core/browser/webdata/autofill_table_unittest.cc b/components/autofill/core/browser/webdata/autofill_table_unittest.cc |
index 75eec072f4b7ac9523a5cfd3901ec561c77a7098..2624daac5c348095d88a1cb41b8bda135a40c548 100644 |
--- a/components/autofill/core/browser/webdata/autofill_table_unittest.cc |
+++ b/components/autofill/core/browser/webdata/autofill_table_unittest.cc |
@@ -1768,10 +1768,10 @@ TEST_F(AutofillTableTest, SetServerProfile) { |
AutofillProfile one(AutofillProfile::SERVER_PROFILE, "a123"); |
std::vector<AutofillProfile> inputs; |
inputs.push_back(one); |
- table_->SetAutofillServerProfiles(inputs); |
+ table_->SetServerProfiles(inputs); |
std::vector<AutofillProfile*> outputs; |
- table_->GetAutofillServerProfiles(&outputs); |
+ table_->GetServerProfiles(&outputs); |
ASSERT_EQ(1u, outputs.size()); |
EXPECT_EQ(one.server_id(), outputs[0]->server_id()); |
@@ -1781,10 +1781,10 @@ TEST_F(AutofillTableTest, SetServerProfile) { |
// Set a different profile. |
AutofillProfile two(AutofillProfile::SERVER_PROFILE, "b456"); |
inputs[0] = two; |
- table_->SetAutofillServerProfiles(inputs); |
+ table_->SetServerProfiles(inputs); |
// The original one should have been replaced. |
- table_->GetAutofillServerProfiles(&outputs); |
+ table_->GetServerProfiles(&outputs); |
ASSERT_EQ(1u, outputs.size()); |
EXPECT_EQ(two.server_id(), outputs[0]->server_id()); |