| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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" |
| 11 #include "content/renderer/media/mock_media_constraint_factory.h" | 11 #include "content/renderer/media/mock_media_constraint_factory.h" |
| 12 #include "third_party/libjingle/source/talk/app/webrtc/mediaconstraintsinterface
.h" | 12 #include "third_party/webrtc/api/mediaconstraintsinterface.h" |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 static const char kValueTrue[] = "true"; | 18 static const char kValueTrue[] = "true"; |
| 19 static const char kValueFalse[] = "false"; | 19 static const char kValueFalse[] = "false"; |
| 20 | 20 |
| 21 } // namespace | 21 } // namespace |
| 22 | 22 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 // This isn't part of the MediaConstraintsInterface. | 100 // This isn't part of the MediaConstraintsInterface. |
| 101 MediaAudioConstraints::kGoogBeamforming | 101 MediaAudioConstraints::kGoogBeamforming |
| 102 }; | 102 }; |
| 103 MockMediaConstraintFactory factory; | 103 MockMediaConstraintFactory factory; |
| 104 for (size_t i = 0; i < arraysize(kDefaultAudioConstraints); ++i) { | 104 for (size_t i = 0; i < arraysize(kDefaultAudioConstraints); ++i) { |
| 105 AddMandatory(kDefaultAudioConstraints[i], false); | 105 AddMandatory(kDefaultAudioConstraints[i], false); |
| 106 } | 106 } |
| 107 } | 107 } |
| 108 | 108 |
| 109 } // namespace content | 109 } // namespace content |
| OLD | NEW |