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

Unified Diff: device/bluetooth/bluetooth_audio_sink_chromeos.cc

Issue 1034893002: device/bluetooth: Add read_mtu as an argument of BluetoothAudioSinkDataAvailable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/bluetooth/bluetooth_audio_sink_chromeos.cc
diff --git a/device/bluetooth/bluetooth_audio_sink_chromeos.cc b/device/bluetooth/bluetooth_audio_sink_chromeos.cc
index 0f76be8ab1d1664a735e27129b4a2cf894bb4e04..dcd751bcd4cd37ac90830862ba35639b66ccd53a 100644
--- a/device/bluetooth/bluetooth_audio_sink_chromeos.cc
+++ b/device/bluetooth/bluetooth_audio_sink_chromeos.cc
@@ -400,8 +400,9 @@ void BluetoothAudioSinkChromeOS::ReadFromFile() {
}
VLOG(1) << "ReadFromFile - read " << size << " bytes";
- FOR_EACH_OBSERVER(BluetoothAudioSink::Observer, observers_,
- BluetoothAudioSinkDataAvailable(this, data_.get(), size));
+ FOR_EACH_OBSERVER(
+ BluetoothAudioSink::Observer, observers_,
+ BluetoothAudioSinkDataAvailable(this, data_.get(), size, read_mtu_));
}
void BluetoothAudioSinkChromeOS::StateChanged(

Powered by Google App Engine
This is Rietveld 408576698