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

Unified Diff: components/autofill/content/browser/wallet/required_action.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: components/autofill/content/browser/wallet/required_action.cc
diff --git a/components/autofill/content/browser/wallet/required_action.cc b/components/autofill/content/browser/wallet/required_action.cc
index 28f9b20ba2f40183bb36cb27234c270060b2baca..8e90dded807198da19ca2091b74b7bb7c679ce7e 100644
--- a/components/autofill/content/browser/wallet/required_action.cc
+++ b/components/autofill/content/browser/wallet/required_action.cc
@@ -35,7 +35,8 @@ bool ActionAppliesToWalletItems(RequiredAction action) {
RequiredAction ParseRequiredActionFromString(const std::string& str) {
std::string str_lower;
- TrimWhitespaceASCII(StringToLowerASCII(str), TRIM_ALL, &str_lower);
+ base::TrimWhitespaceASCII(StringToLowerASCII(str), base::TRIM_ALL,
+ &str_lower);
if (str_lower == "setup_wallet")
return SETUP_WALLET;
« no previous file with comments | « chromeos/system/name_value_pairs_parser.cc ('k') | components/autofill/content/browser/wallet/wallet_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698