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

Unified Diff: device/usb/usb_descriptors_fuzzer.cc

Issue 2821723002: Move classes in the device.usb Mojo namespace to device.mojom (Closed)
Patch Set: mcasas@ nits Created 3 years, 8 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: device/usb/usb_descriptors_fuzzer.cc
diff --git a/device/usb/usb_descriptors_fuzzer.cc b/device/usb/usb_descriptors_fuzzer.cc
index 560a9bfaa031af8d15f5d8ec77314ab2b31a65c0..d1a971306bfa59483f3a33f91d183d9380ee8f9b 100644
--- a/device/usb/usb_descriptors_fuzzer.cc
+++ b/device/usb/usb_descriptors_fuzzer.cc
@@ -14,7 +14,7 @@
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
device::UsbDeviceDescriptor desc;
desc.Parse(std::vector<uint8_t>(data, data + size));
- mojo::ConvertTo<std::vector<device::usb::ConfigurationInfoPtr>>(
+ mojo::ConvertTo<std::vector<device::mojom::UsbConfigurationInfoPtr>>(
desc.configurations);
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698