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: components/autofill/content/browser/wallet/required_action.cc

Issue 1279123004: Replace ToLower calls to the new format (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « components/audio_modem/modem_impl.cc ('k') | components/autofill/core/browser/form_structure.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9516f507507fc0492b91a44192ce5234541e293e..444d91fd8975e721faa42f858a155c95cd36d457 100644
--- a/components/autofill/content/browser/wallet/required_action.cc
+++ b/components/autofill/content/browser/wallet/required_action.cc
@@ -35,7 +35,7 @@ bool ActionAppliesToWalletItems(RequiredAction action) {
RequiredAction ParseRequiredActionFromString(const std::string& str) {
std::string str_lower;
- base::TrimWhitespaceASCII(base::StringToLowerASCII(str), base::TRIM_ALL,
+ base::TrimWhitespaceASCII(base::ToLowerASCII(str), base::TRIM_ALL,
&str_lower);
if (str_lower == "setup_wallet")
« no previous file with comments | « components/audio_modem/modem_impl.cc ('k') | components/autofill/core/browser/form_structure.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698