| Index: third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp b/third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp
|
| index 3668cb6a690e60900d8e403b810957138402737b..e61d42a3699df22539619a667f068da98bee27df 100644
|
| --- a/third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp
|
| +++ b/third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp
|
| @@ -46,7 +46,7 @@ const device::usb::blink::AlternateInterfaceInfo& USBAlternateInterface::info()
|
| HeapVector<Member<USBEndpoint>> USBAlternateInterface::endpoints() const {
|
| HeapVector<Member<USBEndpoint>> endpoints;
|
| for (size_t i = 0; i < info().endpoints.size(); ++i)
|
| - endpoints.append(USBEndpoint::create(this, i));
|
| + endpoints.push_back(USBEndpoint::create(this, i));
|
| return endpoints;
|
| }
|
|
|
|
|