| Index: chrome/browser/system_monitor/removable_device_notifications_linux.cc
|
| diff --git a/chrome/browser/system_monitor/removable_device_notifications_linux.cc b/chrome/browser/system_monitor/removable_device_notifications_linux.cc
|
| index 2d484dc9d7721c2a47e4dc6393829fe7e89b313d..c6b56de239b305b69fe641893471c719c515e05f 100644
|
| --- a/chrome/browser/system_monitor/removable_device_notifications_linux.cc
|
| +++ b/chrome/browser/system_monitor/removable_device_notifications_linux.cc
|
| @@ -435,12 +435,8 @@ void RemovableDeviceNotificationsLinux::AddNewMount(
|
| bool removable;
|
| get_device_info_func_(mount_device, &unique_id, &name, &removable);
|
|
|
| -
|
| - // Keep track of device uuid, to see how often we receive empty values.
|
| - UMA_HISTOGRAM_BOOLEAN("MediaDeviceNotification.DeviceUUIDAvailable",
|
| - !unique_id.empty());
|
| - UMA_HISTOGRAM_BOOLEAN("MediaDeviceNotification.DeviceNameAvailable",
|
| - !name.empty());
|
| + // Keep track of device info details to see how often we get invalid values.
|
| + MediaStorageUtil::RecordDeviceInfoHistogram(true, unique_id, name);
|
| if (unique_id.empty() || name.empty())
|
| return;
|
|
|
|
|