| Index: device/usb/usb_device_impl.h
|
| diff --git a/device/usb/usb_device_impl.h b/device/usb/usb_device_impl.h
|
| index 4c94485a283676dbc281d00a14123c1f749c8fe8..aea9b54cec1d138cc5d6dc27b57e96a88f1a934f 100644
|
| --- a/device/usb/usb_device_impl.h
|
| +++ b/device/usb/usb_device_impl.h
|
| @@ -8,6 +8,7 @@
|
| #include <stdint.h>
|
|
|
| #include <list>
|
| +#include <memory>
|
| #include <string>
|
| #include <utility>
|
|
|
| @@ -63,7 +64,7 @@ class UsbDeviceImpl : public UsbDevice {
|
| }
|
| void set_device_path(const std::string& value) { device_path_ = value; }
|
| void set_webusb_allowed_origins(
|
| - scoped_ptr<WebUsbAllowedOrigins> allowed_origins) {
|
| + std::unique_ptr<WebUsbAllowedOrigins> allowed_origins) {
|
| webusb_allowed_origins_ = std::move(allowed_origins);
|
| }
|
| void set_webusb_landing_page(const GURL& url) { webusb_landing_page_ = url; }
|
|
|