diff options
Diffstat (limited to 'chrome/browser/sync/test/integration/passwords_helper.cc')
-rw-r--r-- | chrome/browser/sync/test/integration/passwords_helper.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/sync/test/integration/passwords_helper.cc b/chrome/browser/sync/test/integration/passwords_helper.cc index ccab9ef..ba78470 100644 --- a/chrome/browser/sync/test/integration/passwords_helper.cc +++ b/chrome/browser/sync/test/integration/passwords_helper.cc @@ -216,8 +216,10 @@ PasswordForm CreateTestPasswordForm(int index) { PasswordForm form; form.signon_realm = kFakeSignonRealm; form.origin = GURL(base::StringPrintf(kIndexedFakeOrigin, index)); - form.username_value = ASCIIToUTF16(base::StringPrintf("username%d", index)); - form.password_value = ASCIIToUTF16(base::StringPrintf("password%d", index)); + form.username_value = + base::ASCIIToUTF16(base::StringPrintf("username%d", index)); + form.password_value = + base::ASCIIToUTF16(base::StringPrintf("password%d", index)); form.date_created = base::Time::Now(); return form; } |