summaryrefslogtreecommitdiffstats
path: root/components/storage_monitor
diff options
context:
space:
mode:
Diffstat (limited to 'components/storage_monitor')
-rw-r--r--components/storage_monitor/storage_monitor_linux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/storage_monitor/storage_monitor_linux.cc b/components/storage_monitor/storage_monitor_linux.cc
index 84c7dc4..162a4a2 100644
--- a/components/storage_monitor/storage_monitor_linux.cc
+++ b/components/storage_monitor/storage_monitor_linux.cc
@@ -99,8 +99,8 @@ class ScopedGetDeviceInfoResultRecorder {
uint64 GetDeviceStorageSize(const base::FilePath& device_path,
struct udev_device* device) {
// sysfs provides the device size in units of 512-byte blocks.
- const std::string partition_size = device::udev_device_get_sysattr_value(
- device, kSizeSysAttr);
+ const std::string partition_size =
+ device::UdevDeviceGetSysattrValue(device, kSizeSysAttr);
// Keep track of device size, to see how often this information is
// unavailable.