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

Unified Diff: media/audio/fake_audio_input_stream.cc

Issue 9418042: Adding microphone volume support to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed henrik's comments Created 8 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 side-by-side diff with in-line comments
Download patch
Index: media/audio/fake_audio_input_stream.cc
diff --git a/media/audio/fake_audio_input_stream.cc b/media/audio/fake_audio_input_stream.cc
index f0f5c258381c9c426b83240423426e44a12f2ed0..b9b271ba670187f723a27fdfe614a24d9bd81ce3 100644
--- a/media/audio/fake_audio_input_stream.cc
+++ b/media/audio/fake_audio_input_stream.cc
@@ -77,3 +77,13 @@ void FakeAudioInputStream::Close() {
}
Release(); // Destoys this object.
}
+
+double FakeAudioInputStream::GetMaxVolume() {
+ return 0.0;
+}
+
+void FakeAudioInputStream::SetVolume(double volume) {}
+
+double FakeAudioInputStream::GetVolume() {
+ return 0.0;
+}

Powered by Google App Engine
This is Rietveld 408576698