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

Unified Diff: components/arc/bluetooth/bluetooth_type_converters.h

Issue 1885683005: Add module suffix in .mojom files for components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only 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: components/arc/bluetooth/bluetooth_type_converters.h
diff --git a/components/arc/bluetooth/bluetooth_type_converters.h b/components/arc/bluetooth/bluetooth_type_converters.h
index d63fec9c131ac07855be8142484a4450e487357d..756edb28643c7f09f2bdf7a5effbfdb2ba61dac9 100644
--- a/components/arc/bluetooth/bluetooth_type_converters.h
+++ b/components/arc/bluetooth/bluetooth_type_converters.h
@@ -20,18 +20,19 @@ class BluetoothUUID;
namespace mojo {
template <>
-struct TypeConverter<arc::BluetoothAddressPtr, std::string> {
- static arc::BluetoothAddressPtr Convert(const std::string& address);
+struct TypeConverter<arc::mojom::BluetoothAddressPtr, std::string> {
+ static arc::mojom::BluetoothAddressPtr Convert(const std::string& address);
};
template <>
-struct TypeConverter<std::string, arc::BluetoothAddress> {
- static std::string Convert(const arc::BluetoothAddress& ptr);
+struct TypeConverter<std::string, arc::mojom::BluetoothAddress> {
+ static std::string Convert(const arc::mojom::BluetoothAddress& ptr);
};
template <>
-struct TypeConverter<arc::BluetoothUUIDPtr, device::BluetoothUUID> {
- static arc::BluetoothUUIDPtr Convert(const device::BluetoothUUID& uuid);
+struct TypeConverter<arc::mojom::BluetoothUUIDPtr, device::BluetoothUUID> {
+ static arc::mojom::BluetoothUUIDPtr Convert(
+ const device::BluetoothUUID& uuid);
};
} // namespace mojo
« no previous file with comments | « components/arc/bluetooth/arc_bluetooth_bridge.cc ('k') | components/arc/bluetooth/bluetooth_type_converters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698