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

Unified Diff: chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc

Issue 22009003: [Autofill] Distinguish between native field types and potentially HTML field types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 4 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
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 49d79ad70b734423d39980b94f5d89174dec7b1b..7fe485bc6b728932db477ea0ff43cc1e5560b08d 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
@@ -13,7 +13,7 @@
#include "components/autofill/core/browser/autofill_profile.h"
#include "components/autofill/core/browser/webdata/autofill_entry.h"
-using autofill::AutofillFieldType;
+using autofill::ServerFieldType;
using autofill::AutofillKey;
using autofill::AutofillProfile;
@@ -103,7 +103,7 @@ void AutofillSyncPerfTest::UpdateProfiles(int profile) {
std::vector<AutofillProfile> autofill_profiles;
for (size_t i = 0; i < all_profiles.size(); ++i) {
autofill_profiles.push_back(*all_profiles[i]);
- autofill_profiles.back().SetRawInfo(AutofillFieldType(autofill::NAME_FIRST),
+ autofill_profiles.back().SetRawInfo(autofill::NAME_FIRST,
UTF8ToUTF16(NextName()));
}
SetProfiles(profile, &autofill_profiles);

Powered by Google App Engine
This is Rietveld 408576698