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

Unified Diff: components/audio_modem/modem_impl.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
Index: components/audio_modem/modem_impl.cc
diff --git a/components/audio_modem/modem_impl.cc b/components/audio_modem/modem_impl.cc
index 23d75d0ac8f6a3221fb3d419af95c691e53b8513..480204d9f8ae8a1f8ddd36035f9e050a63384134 100644
--- a/components/audio_modem/modem_impl.cc
+++ b/components/audio_modem/modem_impl.cc
@@ -62,7 +62,7 @@ std::string AudioTypeToString(AudioType audio_type) {
}
bool ReadBooleanFlag(const std::string& flag, bool default_value) {
- const std::string flag_value = base::StringToLowerASCII(
+ const std::string flag_value = base::ToLowerASCII(
base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(flag));
if (flag_value == "true" || flag_value == "1")
return true;
« no previous file with comments | « cloud_print/gcp20/prototype/print_job_handler.cc ('k') | components/autofill/content/browser/wallet/required_action.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698