| Index: components/autofill/core/browser/autofill_test_utils.cc
|
| diff --git a/components/autofill/core/browser/autofill_test_utils.cc b/components/autofill/core/browser/autofill_test_utils.cc
|
| index 6577c30b8aa180f3bad4eb5687a79751a75a5e56..0addc8738c194182a2e817937afca8bf048e7492 100644
|
| --- a/components/autofill/core/browser/autofill_test_utils.cc
|
| +++ b/components/autofill/core/browser/autofill_test_utils.cc
|
| @@ -21,6 +21,8 @@
|
| #include "components/webdata/encryptor/encryptor.h"
|
| #include "content/public/browser/browser_context.h"
|
|
|
| +using base::ASCIIToUTF16;
|
| +
|
| namespace autofill {
|
| namespace test {
|
|
|
| @@ -85,7 +87,7 @@ void CreateTestAddressFormData(FormData* form) {
|
| inline void check_and_set(
|
| FormGroup* profile, ServerFieldType type, const char* value) {
|
| if (value)
|
| - profile->SetRawInfo(type, UTF8ToUTF16(value));
|
| + profile->SetRawInfo(type, base::UTF8ToUTF16(value));
|
| }
|
|
|
| AutofillProfile GetFullProfile() {
|
|
|