| 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 4cee49385bb3bb919f3649564c9afe8c8a4cf34e..4678f831e8d27b4f8575ca967f0409b7c3ed2a5f 100644
|
| --- a/chrome/browser/autofill/autocomplete_history_manager.cc
|
| +++ b/chrome/browser/autofill/autocomplete_history_manager.cc
|
| @@ -98,12 +98,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
|
|
|