summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-04 20:02:29 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-04 20:02:29 +0000
commit468327f532d9d061ebbd4ea3baeea9b914cb352d (patch)
treeaf4a9ccb4440ea2b12b8b6193ec274b6a0eed755 /chrome/test
parenta23390092363b04a55f2f028a1425291828ea4ba (diff)
downloadchromium_src-468327f532d9d061ebbd4ea3baeea9b914cb352d.zip
chromium_src-468327f532d9d061ebbd4ea3baeea9b914cb352d.tar.gz
chromium_src-468327f532d9d061ebbd4ea3baeea9b914cb352d.tar.bz2
Autofill browsertest
BUG=none TEST=interactive_ui_tests --gtest_filter=AutofillTest.* Review URL: http://codereview.chromium.org/3492009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61407 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/live_sync/live_autofill_sync_test.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/test/live_sync/live_autofill_sync_test.h b/chrome/test/live_sync/live_autofill_sync_test.h
index 9eff1f5..48c1db2 100644
--- a/chrome/test/live_sync/live_autofill_sync_test.h
+++ b/chrome/test/live_sync/live_autofill_sync_test.h
@@ -11,7 +11,7 @@
#include <vector>
#include "base/command_line.h"
-#include "chrome/browser/autofill/autofill_common_unittest.h"
+#include "chrome/browser/autofill/autofill_common_test.h"
#include "chrome/browser/autofill/autofill_profile.h"
#include "chrome/browser/autofill/autofill_type.h"
#include "chrome/browser/autofill/field_types.h"
@@ -106,24 +106,24 @@ enum ProfileType {
void FillProfile(ProfileType type, AutoFillProfile* profile) {
switch (type) {
case PROFILE_MARION:
- autofill_unittest::SetProfileInfo(profile,
+ autofill_test::SetProfileInfo(profile,
"Billing", "Marion", "Mitchell", "Morrison",
"johnwayne@me.xyz", "Fox", "123 Zoo St.", "unit 5", "Hollywood", "CA",
"91601", "US", "12345678910", "01987654321");
break;
case PROFILE_HOMER:
- autofill_unittest::SetProfileInfo(profile,
+ autofill_test::SetProfileInfo(profile,
"Shipping", "Homer", "J.", "Simpson",
"homer@snpp.com", "SNPP", "1 Main St", "PO Box 1", "Springfield", "MA",
"94101", "US", "14155551212", "14155551313");
break;
case PROFILE_FRASIER:
- autofill_unittest::SetProfileInfo(profile,
+ autofill_test::SetProfileInfo(profile,
"Business", "Frasier", "Winslow", "Crane",
"", "randomness", "", "Apt. 4", "Seattle", "WA",
"99121", "US", "0000000000", "ABCDEFGHIJK");
case PROFILE_NULL:
- autofill_unittest::SetProfileInfo(profile,
+ autofill_test::SetProfileInfo(profile,
"", "key", "", "", "", "", "", "", "", "", "", "", "", "");
break;
}