| Index: chrome/browser/system_monitor/removable_device_notifications_mac.mm
|
| diff --git a/chrome/browser/system_monitor/removable_device_notifications_mac.mm b/chrome/browser/system_monitor/removable_device_notifications_mac.mm
|
| index 85455e6a9ee9605c431db01c8093148700b868b0..29ac0c2db9aeca70e9dfd00fc7893e3a2482148f 100644
|
| --- a/chrome/browser/system_monitor/removable_device_notifications_mac.mm
|
| +++ b/chrome/browser/system_monitor/removable_device_notifications_mac.mm
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/system_monitor/removable_device_notifications_mac.h"
|
|
|
| +#include "chrome/browser/system_monitor/removable_device_notifications_histogram.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| namespace chrome {
|
| @@ -96,6 +97,8 @@ void RemovableDeviceNotificationsMac::UpdateDisk(
|
| disk_info_map_.erase(it);
|
| } else {
|
| disk_info_map_[info.bsd_name()] = info;
|
| + RecordDeviceInfoHistogram(info.type(), info.device_id(),
|
| + info.display_name());
|
| if (ShouldPostNotificationForDisk(info)) {
|
| base::SystemMonitor::Get()->ProcessRemovableStorageAttached(
|
| info.device_id(), info.display_name(), info.mount_point().value());
|
|
|