Index: components/storage_monitor/media_storage_util.cc |
diff --git a/components/storage_monitor/media_storage_util.cc b/components/storage_monitor/media_storage_util.cc |
index c95f53404c880fb22d607d518832ebc8fc559858..c66d88c905edb990c12c99d565e7cbf532bcc543 100644 |
--- a/components/storage_monitor/media_storage_util.cc |
+++ b/components/storage_monitor/media_storage_util.cc |
@@ -99,7 +99,7 @@ bool MediaStorageUtil::HasDcim(const base::FilePath& mount_point) { |
if (!base::DirectoryExists(mount_point.Append(dcim_dir))) { |
// Check for lowercase 'dcim' as well. |
base::FilePath dcim_path_lower( |
- mount_point.Append(StringToLowerASCII(dcim_dir))); |
+ mount_point.Append(base::StringToLowerASCII(dcim_dir))); |
if (!base::DirectoryExists(dcim_path_lower)) |
return false; |
} |