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

Unified Diff: third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp

Issue 1902263004: Mojo: Change the blink variant from "wtf" to "blink". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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: 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 fb8acd65d5c42868e823aee68886bb925c9ae206..bb5554d047bea533529bc7bb2997cdd7a66ee8be 100644
--- a/third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp
+++ b/third_party/WebKit/Source/modules/webusb/USBAlternateInterface.cpp
@@ -34,9 +34,9 @@ USBAlternateInterface::USBAlternateInterface(const USBInterface* interface, size
ASSERT(m_alternateIndex < m_interface->info().alternates.size());
}
-const device::usb::wtf::AlternateInterfaceInfo& USBAlternateInterface::info() const
+const device::usb::blink::AlternateInterfaceInfo& USBAlternateInterface::info() const
{
- const device::usb::wtf::InterfaceInfo& interfaceInfo = m_interface->info();
+ const device::usb::blink::InterfaceInfo& interfaceInfo = m_interface->info();
ASSERT(m_alternateIndex < interfaceInfo.alternates.size());
return *interfaceInfo.alternates[m_alternateIndex];
}

Powered by Google App Engine
This is Rietveld 408576698