Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: third_party/WebKit/Source/modules/webusb/USB.h

Issue 2234443002: Mojo C++ binding: make device/usb mojom targets use STD string/vector types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move the vector converter into a private header. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webusb/USB.h
diff --git a/third_party/WebKit/Source/modules/webusb/USB.h b/third_party/WebKit/Source/modules/webusb/USB.h
index 94a15fdf430b2f5f8795abc849157c3e2b36aa83..1c44692d1abd8f8e80a85eec3dae7300ad7f5e33 100644
--- a/third_party/WebKit/Source/modules/webusb/USB.h
+++ b/third_party/WebKit/Source/modules/webusb/USB.h
@@ -56,7 +56,7 @@ public:
device::usb::blink::DeviceManager* deviceManager() const { return m_deviceManager.get(); }
- void onGetDevices(ScriptPromiseResolver*, mojo::WTFArray<device::usb::blink::DeviceInfoPtr>);
+ void onGetDevices(ScriptPromiseResolver*, Vector<device::usb::blink::DeviceInfoPtr>);
void onGetPermission(ScriptPromiseResolver*, device::usb::blink::DeviceInfoPtr);
// DeviceManagerClient implementation.

Powered by Google App Engine
This is Rietveld 408576698