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

Unified Diff: content/renderer/media/mock_media_constraint_factory.h

Issue 227743004: Added a kEchoCancellation constraint to turn off the audio processing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 7 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: content/renderer/media/mock_media_constraint_factory.h
diff --git a/content/renderer/media/mock_media_constraint_factory.h b/content/renderer/media/mock_media_constraint_factory.h
index 6eb261a42f71afde5123ac39272761f88607cfe5..e98cb30429b976e192dd0e902c42d29f09bbcef4 100644
--- a/content/renderer/media/mock_media_constraint_factory.h
+++ b/content/renderer/media/mock_media_constraint_factory.h
@@ -20,8 +20,12 @@ class MockMediaConstraintFactory {
blink::WebMediaConstraints CreateWebMediaConstraints();
void AddMandatory(const std::string& key, int value);
void AddMandatory(const std::string& key, double value);
+ void AddMandatory(const std::string& key, const std::string& value);
+ void AddMandatory(const std::string& key, bool value);
void AddOptional(const std::string& key, int value);
void AddOptional(const std::string& key, double value);
+ void AddOptional(const std::string& key, const std::string& value);
+ void AddOptional(const std::string& key, bool value);
void DisableDefaultAudioConstraints();
private:
« no previous file with comments | « content/renderer/media/media_stream_video_source.cc ('k') | content/renderer/media/mock_media_constraint_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698