Combine InputFile and OutputFile into a single class.

PiperOrigin-RevId: 426172033
This commit is contained in:
jfcarroll
2022-02-03 09:57:50 -08:00
committed by Copybara-Service
parent fa02d255e3
commit 9abc9a59b9
14 changed files with 115 additions and 109 deletions
@@ -382,8 +382,8 @@ winrt::fire_and_forget BluetoothClassicMedium::DeviceWatcher_Added(
winrt::Windows::Foundation::AsyncStatus status) {
EnterCriticalSection(&critical_section_);
std::unique_ptr<BluetoothDevice> bluetoothDeviceP =
std::make_unique<BluetoothDevice>(bluetoothDevice.get());
auto bluetoothDeviceP =
absl::WrapUnique(new BluetoothDevice(bluetoothDevice.get()));
discovered_devices_by_id_[deviceInfo.Id()] =
std::move(bluetoothDeviceP);