Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc

Issue 183853011: Move TrimWhitespace to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698