Index: components/autofill/core/browser/autofill_manager.cc |
diff --git a/components/autofill/core/browser/autofill_manager.cc b/components/autofill/core/browser/autofill_manager.cc |
index 0934871b4bfb95e67eb9b2f144667de2da01d523..f0d18b6690b7b3f03e07d47f12ba9cc06148a5df 100644 |
--- a/components/autofill/core/browser/autofill_manager.cc |
+++ b/components/autofill/core/browser/autofill_manager.cc |
@@ -144,7 +144,7 @@ void DeterminePossibleFieldTypesForUpload( |
matching_types.insert(autofill::PASSWORD); |
} else { |
base::string16 value; |
- TrimWhitespace(field->value, TRIM_ALL, &value); |
+ base::TrimWhitespace(field->value, base::TRIM_ALL, &value); |
for (std::vector<AutofillProfile>::const_iterator it = profiles.begin(); |
it != profiles.end(); ++it) { |
it->GetMatchingTypes(value, app_locale, &matching_types); |