Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
index 57f639107d00b7d5fc4a9017beec2901c22a97f2..1ce3532083495eccfe1d023508f9568a4c8daf16 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
@@ -226,7 +226,7 @@ void GetBillingInfoFromOutputs(const FieldValueMap& output, |
it != output.end(); ++it) { |
const ServerFieldType type = it->first; |
base::string16 trimmed; |
- TrimWhitespace(it->second, TRIM_ALL, &trimmed); |
+ base::TrimWhitespace(it->second, base::TRIM_ALL, &trimmed); |
// Special case CVC as CreditCard just swallows it. |
if (type == CREDIT_CARD_VERIFICATION_CODE) { |