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

Unified Diff: media/audio/audio_manager_base.h

Issue 1864483002: Forward output glitch information from stream WebRTC log (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finished up for review. Created 4 years, 7 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: media/audio/audio_manager_base.h
diff --git a/media/audio/audio_manager_base.h b/media/audio/audio_manager_base.h
index 2a8c2d54ea915ffeccecbe7fae918ebe06eb57eb..deb86debe2290d482275e4b34f754873c01598da 100644
--- a/media/audio/audio_manager_base.h
+++ b/media/audio/audio_manager_base.h
@@ -38,7 +38,8 @@ class MEDIA_EXPORT AudioManagerBase : public AudioManager {
void GetAudioOutputDeviceNames(AudioDeviceNames* device_names) override;
AudioOutputStream* MakeAudioOutputStream(
const AudioParameters& params,
- const std::string& device_id) override;
+ const std::string& device_id,
+ const StatisticsCallback& statistics_callback) override;
AudioInputStream* MakeAudioInputStream(const AudioParameters& params,
const std::string& device_id) override;
AudioOutputStream* MakeAudioOutputStreamProxy(
@@ -73,7 +74,8 @@ class MEDIA_EXPORT AudioManagerBase : public AudioManager {
// Creates the output stream for the |AUDIO_PCM_LOW_LATENCY| format.
virtual AudioOutputStream* MakeLowLatencyOutputStream(
const AudioParameters& params,
- const std::string& device_id) = 0;
+ const std::string& device_id,
+ const StatisticsCallback& statistics_callback) = 0;
// Creates the input stream for the |AUDIO_PCM_LINEAR| format. The legacy
// name is also from |AUDIO_PCM_LINEAR|.

Powered by Google App Engine
This is Rietveld 408576698