| OLD | NEW |
| 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 "media/audio/virtual_audio_input_stream.h" | 5 #include "media/audio/virtual_audio_input_stream.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 double VirtualAudioInputStream::GetVolume() { | 166 double VirtualAudioInputStream::GetVolume() { |
| 167 return 1.0; | 167 return 1.0; |
| 168 } | 168 } |
| 169 | 169 |
| 170 void VirtualAudioInputStream::SetAutomaticGainControl(bool enabled) {} | 170 void VirtualAudioInputStream::SetAutomaticGainControl(bool enabled) {} |
| 171 | 171 |
| 172 bool VirtualAudioInputStream::GetAutomaticGainControl() { | 172 bool VirtualAudioInputStream::GetAutomaticGainControl() { |
| 173 return false; | 173 return false; |
| 174 } | 174 } |
| 175 | 175 |
| 176 bool VirtualAudioInputStream::IsMuted() { |
| 177 return false; |
| 178 } |
| 179 |
| 176 } // namespace media | 180 } // namespace media |
| OLD | NEW |