| Index: device/hid/device_monitor_linux.h
|
| diff --git a/device/hid/device_monitor_linux.h b/device/hid/device_monitor_linux.h
|
| index 824fa652ff79bea9e5d833b718d5458ffd21deb8..23ad81aa2dd8a8c171f6346f80916c4ab844908c 100644
|
| --- a/device/hid/device_monitor_linux.h
|
| +++ b/device/hid/device_monitor_linux.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef DEVICE_HID_DEVICE_MONITOR_LINUX_H_
|
| #define DEVICE_HID_DEVICE_MONITOR_LINUX_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| @@ -54,7 +55,7 @@ class DeviceMonitorLinux : public base::MessageLoop::DestructionObserver,
|
| void OnFileCanWriteWithoutBlocking(int fd) override;
|
|
|
| private:
|
| - friend struct base::DefaultDeleter<DeviceMonitorLinux>;
|
| + friend std::default_delete<DeviceMonitorLinux>;
|
|
|
| ~DeviceMonitorLinux() override;
|
|
|
|
|