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

Unified Diff: media/audio/audio_output_proxy.cc

Issue 2582703003: Audio output debug recording. (Closed)
Patch Set: Control through AudioManager. Compiles on Linux, works with PulseAudio. Created 3 years, 11 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_output_proxy.cc
diff --git a/media/audio/audio_output_proxy.cc b/media/audio/audio_output_proxy.cc
index fdbb8bcda0846d4c28197e5e4755aeb9b9868006..efff15bc79b986a6ed312029b6c656b63563be1f 100644
--- a/media/audio/audio_output_proxy.cc
+++ b/media/audio/audio_output_proxy.cc
@@ -74,6 +74,16 @@ void AudioOutputProxy::GetVolume(double* volume) {
*volume = volume_;
}
+void AudioOutputProxy::EnableDebugRecording(const base::FilePath& file_name) {
+ // Must only be called by AudoiManager directly on physical streams.
Max Morin 2017/01/20 07:49:09 Audio
Henrik Grunell 2017/01/20 10:38:56 Done.
+ NOTREACHED();
+}
+
+void AudioOutputProxy::DisableDebugRecording() {
+ // Must only be called by AudioManager directly on physical streams.
+ NOTREACHED();
+}
+
void AudioOutputProxy::Close() {
DCHECK(CalledOnValidThread());
DCHECK(state_ == kCreated || state_ == kOpenError || state_ == kOpened ||

Powered by Google App Engine
This is Rietveld 408576698