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

Unified Diff: components/device_event_log/device_event_log_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
« no previous file with comments | « components/crx_file/id_util.cc ('k') | components/history/core/browser/url_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/device_event_log/device_event_log_impl.cc
diff --git a/components/device_event_log/device_event_log_impl.cc b/components/device_event_log/device_event_log_impl.cc
index 7b339b5539bc4bfb79a8c2151a34844c5011883c..94ee5fded90ac93f72355c2b2a435bdb76dc4b8f 100644
--- a/components/device_event_log/device_event_log_impl.cc
+++ b/components/device_event_log/device_event_log_impl.cc
@@ -220,7 +220,7 @@ void GetFormat(const std::string& format_string,
}
LogType LogTypeFromString(const std::string& desc) {
- std::string desc_lc = base::StringToLowerASCII(desc);
+ std::string desc_lc = base::ToLowerASCII(desc);
if (desc_lc == "network")
return LOG_TYPE_NETWORK;
if (desc_lc == "power")
« no previous file with comments | « components/crx_file/id_util.cc ('k') | components/history/core/browser/url_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698