| Index: components/storage_monitor/storage_monitor_linux.cc
|
| diff --git a/components/storage_monitor/storage_monitor_linux.cc b/components/storage_monitor/storage_monitor_linux.cc
|
| index 812ffb2976820b20c480420f10312697ef3cbf9e..f0f53d70182d28e949a746a50a85a5e606803d97 100644
|
| --- a/components/storage_monitor/storage_monitor_linux.cc
|
| +++ b/components/storage_monitor/storage_monitor_linux.cc
|
| @@ -55,11 +55,6 @@ const char kVendorID[] = "ID_VENDOR_ID";
|
| // Construct a device id using label or manufacturer (vendor and model) details.
|
| std::string MakeDeviceUniqueId(struct udev_device* device) {
|
| std::string uuid = device::UdevDeviceGetPropertyValue(device, kFsUUID);
|
| - // Keep track of device uuid, to see how often we receive empty uuid values.
|
| - UMA_HISTOGRAM_BOOLEAN(
|
| - "RemovableDeviceNotificationsLinux.device_file_system_uuid_available",
|
| - !uuid.empty());
|
| -
|
| if (!uuid.empty())
|
| return kFSUniqueIdPrefix + uuid;
|
|
|
|
|