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

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

Issue 11360055: [Autofill] Rename GetInfo and SetInfo to GetRawInfo and SetRawInfo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase harder Created 8 years, 1 month 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 e58ae571ac96fb9d33e3462ac8c1833503a7dc38..24d52196b8d76370dfda07ab67789771f4881331 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
@@ -99,8 +99,8 @@ 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().SetInfo(AutofillFieldType(NAME_FIRST),
- UTF8ToUTF16(NextName()));
+ autofill_profiles.back().SetRawInfo(AutofillFieldType(NAME_FIRST),
+ UTF8ToUTF16(NextName()));
}
SetProfiles(profile, &autofill_profiles);
}

Powered by Google App Engine
This is Rietveld 408576698