| Index: chrome/browser/autofill/autocomplete_history_manager.cc
|
| diff --git a/chrome/browser/autofill/autocomplete_history_manager.cc b/chrome/browser/autofill/autocomplete_history_manager.cc
|
| index 412fd8c5694efefc2b5114d9465df81243893229..438113b9163cc24106570325344f0b9fba80dc01 100644
|
| --- a/chrome/browser/autofill/autocomplete_history_manager.cc
|
| +++ b/chrome/browser/autofill/autocomplete_history_manager.cc
|
| @@ -96,12 +96,12 @@ bool IsSSN(const string16& text) {
|
|
|
| bool IsTextField(const FormFieldData& field) {
|
| return
|
| - field.form_control_type == ASCIIToUTF16("text") ||
|
| - field.form_control_type == ASCIIToUTF16("search") ||
|
| - field.form_control_type == ASCIIToUTF16("tel") ||
|
| - field.form_control_type == ASCIIToUTF16("url") ||
|
| - field.form_control_type == ASCIIToUTF16("email") ||
|
| - field.form_control_type == ASCIIToUTF16("text");
|
| + field.form_control_type == "text" ||
|
| + field.form_control_type == "search" ||
|
| + field.form_control_type == "tel" ||
|
| + field.form_control_type == "url" ||
|
| + field.form_control_type == "email" ||
|
| + field.form_control_type == "text";
|
| }
|
|
|
| } // namespace
|
|
|