| Index: chrome/browser/storage_monitor/storage_monitor_linux.cc
|
| diff --git a/chrome/browser/storage_monitor/storage_monitor_linux.cc b/chrome/browser/storage_monitor/storage_monitor_linux.cc
|
| index 5c5816f4e0b8833516ac865a7a0aeba062634e8b..5e2cba15c5f5085077faea701bb6187c3be08df6 100644
|
| --- a/chrome/browser/storage_monitor/storage_monitor_linux.cc
|
| +++ b/chrome/browser/storage_monitor/storage_monitor_linux.cc
|
| @@ -144,11 +144,11 @@ scoped_ptr<StorageInfo> GetDeviceInfo(const base::FilePath& device_path,
|
| return storage_info.Pass();
|
|
|
| base::string16 volume_label =
|
| - UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kLabel));
|
| + base::UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kLabel));
|
| base::string16 vendor_name =
|
| - UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kVendor));
|
| + base::UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kVendor));
|
| base::string16 model_name =
|
| - UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kModel));
|
| + base::UTF8ToUTF16(GetUdevDevicePropertyValue(device.get(), kModel));
|
|
|
| std::string unique_id = MakeDeviceUniqueId(device.get());
|
|
|
|
|