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

Unified Diff: components/storage_monitor/portable_device_watcher_win.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/storage_monitor/portable_device_watcher_win.cc
diff --git a/components/storage_monitor/portable_device_watcher_win.cc b/components/storage_monitor/portable_device_watcher_win.cc
index 3d79ece322b1ada7bed65357fd3cb04c7df6b441..2cf4af696598bc004feba05a3f4765366987284d 100644
--- a/components/storage_monitor/portable_device_watcher_win.cc
+++ b/components/storage_monitor/portable_device_watcher_win.cc
@@ -60,7 +60,7 @@ base::string16 GetPnpDeviceId(LPARAM data) {
return base::string16();
base::string16 device_id(dev_interface->dbcc_name);
DCHECK(base::IsStringASCII(device_id));
- return StringToLowerASCII(device_id);
+ return base::StringToLowerASCII(device_id);
}
// Gets the friendly name of the device specified by the |pnp_device_id|. On

Powered by Google App Engine
This is Rietveld 408576698