| Index: chrome/browser/autofill/phone_number_unittest.cc
|
| diff --git a/chrome/browser/autofill/phone_number_unittest.cc b/chrome/browser/autofill/phone_number_unittest.cc
|
| index e00eab47a62de11c02a5a417cd151e610fc853d6..df49d01218e802aebd555cd252afd9ac77bc5b4a 100644
|
| --- a/chrome/browser/autofill/phone_number_unittest.cc
|
| +++ b/chrome/browser/autofill/phone_number_unittest.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "base/string16.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/autofill/autofill_profile.h"
|
| #include "chrome/browser/autofill/field_types.h"
|
| @@ -18,7 +19,7 @@ TEST(PhoneNumberTest, Matcher) {
|
| phone_number.SetCanonicalizedInfo(PHONE_HOME_WHOLE_NUMBER, phone);
|
|
|
| FieldTypeSet matching_types;
|
| - phone_number.GetMatchingTypes(ASCIIToUTF16(""), &matching_types);
|
| + phone_number.GetMatchingTypes(string16(), &matching_types);
|
| EXPECT_EQ(1U, matching_types.size());
|
| EXPECT_TRUE(matching_types.find(EMPTY_TYPE) != matching_types.end());
|
| matching_types.clear();
|
|
|