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

Unified Diff: device/core/device_monitor_win.cc

Issue 1282363003: Convert remaining StringToLowerASCII to ToLowerASCII (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 | « crypto/symmetric_key_unittest.cc ('k') | device/hid/hid_service_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/core/device_monitor_win.cc
diff --git a/device/core/device_monitor_win.cc b/device/core/device_monitor_win.cc
index 3449c82350e658b5b93379141946f63a8ce993cc..eab9e1656f5c676022e8e46c4a53b43a506d69ca 100644
--- a/device/core/device_monitor_win.cc
+++ b/device/core/device_monitor_win.cc
@@ -114,7 +114,7 @@ class DeviceMonitorMessageWindow {
std::string device_path(base::SysWideToUTF8(db->dbcc_name));
DCHECK(base::IsStringASCII(device_path));
- device_path = base::StringToLowerASCII(device_path);
+ device_path = base::ToLowerASCII(device_path);
if (wparam == DBT_DEVICEARRIVAL) {
if (device_monitor) {
« no previous file with comments | « crypto/symmetric_key_unittest.cc ('k') | device/hid/hid_service_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698