| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "content/renderer/media/media_stream_audio_processor_options.h" | 10 #include "content/renderer/media/media_stream_audio_processor_options.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 basic_.googAutoGainControl.setExact(false); | 35 basic_.googAutoGainControl.setExact(false); |
| 36 basic_.googExperimentalAutoGainControl.setExact(false); | 36 basic_.googExperimentalAutoGainControl.setExact(false); |
| 37 basic_.googNoiseSuppression.setExact(false); | 37 basic_.googNoiseSuppression.setExact(false); |
| 38 basic_.googNoiseSuppression.setExact(false); | 38 basic_.googNoiseSuppression.setExact(false); |
| 39 basic_.googHighpassFilter.setExact(false); | 39 basic_.googHighpassFilter.setExact(false); |
| 40 basic_.googTypingNoiseDetection.setExact(false); | 40 basic_.googTypingNoiseDetection.setExact(false); |
| 41 basic_.googExperimentalNoiseSuppression.setExact(false); | 41 basic_.googExperimentalNoiseSuppression.setExact(false); |
| 42 basic_.googBeamforming.setExact(false); | 42 basic_.googBeamforming.setExact(false); |
| 43 } | 43 } |
| 44 | 44 |
| 45 void MockConstraintFactory::Reset() { |
| 46 basic_ = blink::WebMediaTrackConstraintSet(); |
| 47 advanced_.clear(); |
| 48 } |
| 49 |
| 45 } // namespace content | 50 } // namespace content |
| OLD | NEW |