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

Side by Side Diff: content/renderer/media/webrtc_audio_device_impl.cc

Issue 11880009: Introduce AudioHardwareConfig for renderer side audio device info. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style nits. Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/media/webrtc_audio_device_impl.h" 5 #include "content/renderer/media/webrtc_audio_device_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/win/windows_version.h" 10 #include "base/win/windows_version.h"
11 #include "content/renderer/media/audio_hardware.h"
12 #include "content/renderer/media/webrtc_audio_capturer.h" 11 #include "content/renderer/media/webrtc_audio_capturer.h"
13 #include "content/renderer/media/webrtc_audio_renderer.h" 12 #include "content/renderer/media/webrtc_audio_renderer.h"
14 #include "content/renderer/render_thread_impl.h" 13 #include "content/renderer/render_thread_impl.h"
15 #include "media/audio/audio_parameters.h" 14 #include "media/audio/audio_parameters.h"
16 #include "media/audio/audio_util.h" 15 #include "media/audio/audio_util.h"
17 #include "media/audio/sample_rates.h" 16 #include "media/audio/sample_rates.h"
18 17
19 using media::AudioParameters; 18 using media::AudioParameters;
20 using media::ChannelLayout; 19 using media::ChannelLayout;
21 20
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 NOTIMPLEMENTED(); 849 NOTIMPLEMENTED();
851 return -1; 850 return -1;
852 } 851 }
853 852
854 int32_t WebRtcAudioDeviceImpl::GetLoudspeakerStatus(bool* enabled) const { 853 int32_t WebRtcAudioDeviceImpl::GetLoudspeakerStatus(bool* enabled) const {
855 NOTIMPLEMENTED(); 854 NOTIMPLEMENTED();
856 return -1; 855 return -1;
857 } 856 }
858 857
859 } // namespace content 858 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/webrtc_audio_capturer.cc ('k') | content/renderer/media/webrtc_audio_device_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698