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

Unified Diff: media/audio/audio_manager_base.cc

Issue 23453022: Add AudioManager::GetAudioOutputDeviceNames and implement for pulseaudio. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mediaCleanups
Patch Set: Add missing file. Created 7 years, 3 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.cc
diff --git a/media/audio/audio_manager_base.cc b/media/audio/audio_manager_base.cc
index db77f004e386ec801a595a7c7fc030df6cbb0603..23da14c475008a3d85bbbb6d277e642498dba11c 100644
--- a/media/audio/audio_manager_base.cc
+++ b/media/audio/audio_manager_base.cc
@@ -288,7 +288,13 @@ void AudioManagerBase::ShowAudioInputSettings() {
}
void AudioManagerBase::GetAudioInputDeviceNames(
- media::AudioDeviceNames* device_names) {
+ AudioDeviceNames* device_names) {
+}
+
+void AudioManagerBase::GetAudioOutputDeviceNames(
+ AudioDeviceNames* device_names) {
+ // TODO(joi): Remove this and keep pure virtual once implemented everywhere.
+ NOTREACHED() << "Not implemented on this platform.";
tommi (sloooow) - chröme 2013/09/03 15:57:15 NOTIMPLEMENTED?
Jói 2013/09/04 09:11:04 Done.
}
void AudioManagerBase::ReleaseOutputStream(AudioOutputStream* stream) {

Powered by Google App Engine
This is Rietveld 408576698