| Index: ppapi/proxy/device_enumeration_resource_helper.h
|
| diff --git a/ppapi/proxy/device_enumeration_resource_helper.h b/ppapi/proxy/device_enumeration_resource_helper.h
|
| index ea96ea2ba7163b7a2be80802b688ec973e4d6bb5..5c4fe72891e1bf5028ca72c6b586b648f564bdb3 100644
|
| --- a/ppapi/proxy/device_enumeration_resource_helper.h
|
| +++ b/ppapi/proxy/device_enumeration_resource_helper.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| @@ -70,7 +71,7 @@ class PPAPI_PROXY_EXPORT DeviceEnumerationResourceHelper
|
| bool pending_enumerate_devices_;
|
|
|
| uint32_t monitor_callback_id_;
|
| - scoped_ptr<ThreadAwareCallback<PP_MonitorDeviceChangeCallback> >
|
| + std::unique_ptr<ThreadAwareCallback<PP_MonitorDeviceChangeCallback>>
|
| monitor_callback_;
|
| void* monitor_user_data_;
|
|
|
|
|