| Index: device/usb/usb_device.h
|
| diff --git a/device/usb/usb_device.h b/device/usb/usb_device.h
|
| index 64509843bc2edef7732a76978bb55a2d36a53faa..2d773ddd60ad747d60b3f2ff834de2159c86f930 100644
|
| --- a/device/usb/usb_device.h
|
| +++ b/device/usb/usb_device.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -108,7 +109,7 @@ class UsbDevice : public base::RefCountedThreadSafe<UsbDevice> {
|
| base::string16 manufacturer_string_;
|
| base::string16 product_string_;
|
| base::string16 serial_number_;
|
| - scoped_ptr<WebUsbAllowedOrigins> webusb_allowed_origins_;
|
| + std::unique_ptr<WebUsbAllowedOrigins> webusb_allowed_origins_;
|
| GURL webusb_landing_page_;
|
|
|
| // All of the device's configuration descriptors.
|
|
|