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

Unified Diff: chrome/browser/sync/glue/autofill_profile_model_associator_unittest.cc

Issue 6673079: Reduce boxing and unboxing of AutofillFieldType (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compile on Windows. Created 9 years, 9 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/glue/autofill_profile_model_associator_unittest.cc
diff --git a/chrome/browser/sync/glue/autofill_profile_model_associator_unittest.cc b/chrome/browser/sync/glue/autofill_profile_model_associator_unittest.cc
index a1780d436ff4188553abf034246a32e04e0b617a..907f19608c32ebd2c68264a567097de73609f41b 100644
--- a/chrome/browser/sync/glue/autofill_profile_model_associator_unittest.cc
+++ b/chrome/browser/sync/glue/autofill_profile_model_associator_unittest.cc
@@ -255,7 +255,7 @@ TEST_F(AutofillProfileModelAssociatorTest, TestNeedToAddNativeProfile) {
EXPECT_EQ(bundle.new_profiles.size(), (unsigned int)1);
EXPECT_EQ(
dhollowa 2011/03/16 17:07:11 nit: should be able to pull up to the "(" now.
Ilya Sherman 2011/03/17 03:42:29 Done.
- bundle.new_profiles.front()->GetFieldText(AutofillType(NAME_FIRST)),
+ bundle.new_profiles.front()->GetFieldText(NAME_FIRST),
UTF8ToUTF16(first_name));
}

Powered by Google App Engine
This is Rietveld 408576698