| Index: chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
|
| diff --git a/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc b/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
|
| index da288abdee72f00f3095e74bb1f9ee6bbe0b6d7a..b89f270b0bd03d5d5fcdb2bd6f61b68773b0f052 100644
|
| --- a/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
|
| +++ b/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
|
| @@ -21,8 +21,8 @@ using autofill::AutofillKey;
|
| using autofill::AutofillProfile;
|
|
|
| using autofill_helper::AllProfilesMatch;
|
| +using autofill_helper::GetAllAutoFillProfiles;
|
| using autofill_helper::GetAllKeys;
|
| -using autofill_helper::GetAllProfiles;
|
| using autofill_helper::GetKeyCount;
|
| using autofill_helper::GetProfileCount;
|
| using autofill_helper::RemoveKeys;
|
| @@ -89,7 +89,7 @@ class AutofillSyncPerfTest : public SyncTest {
|
|
|
| void AutofillSyncPerfTest::AddProfiles(int profile, int num_profiles) {
|
| const std::vector<AutofillProfile*>& all_profiles =
|
| - GetAllProfiles(profile);
|
| + GetAllAutoFillProfiles(profile);
|
| std::vector<AutofillProfile> autofill_profiles;
|
| for (size_t i = 0; i < all_profiles.size(); ++i) {
|
| autofill_profiles.push_back(*all_profiles[i]);
|
| @@ -102,7 +102,7 @@ void AutofillSyncPerfTest::AddProfiles(int profile, int num_profiles) {
|
|
|
| void AutofillSyncPerfTest::UpdateProfiles(int profile) {
|
| const std::vector<AutofillProfile*>& all_profiles =
|
| - GetAllProfiles(profile);
|
| + GetAllAutoFillProfiles(profile);
|
| std::vector<AutofillProfile> autofill_profiles;
|
| for (size_t i = 0; i < all_profiles.size(); ++i) {
|
| autofill_profiles.push_back(*all_profiles[i]);
|
|
|