| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 #ifndef WEBRTC_AUDIO_TEST_LOW_BANDWIDTH_AUDIO_TEST_H_ | 10 #ifndef WEBRTC_AUDIO_TEST_LOW_BANDWIDTH_AUDIO_TEST_H_ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 void ModifyAudioConfigs( | 47 void ModifyAudioConfigs( |
| 48 AudioSendStream::Config* send_config, | 48 AudioSendStream::Config* send_config, |
| 49 std::vector<AudioReceiveStream::Config>* receive_configs) override; | 49 std::vector<AudioReceiveStream::Config>* receive_configs) override; |
| 50 | 50 |
| 51 void PerformTest() override; | 51 void PerformTest() override; |
| 52 void OnTestFinished() override; | 52 void OnTestFinished() override; |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 test::FakeAudioDevice* send_audio_device_; | 55 test::FakeAudioDevice* send_audio_device_; |
| 56 Call* sender_call_; |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 } // namespace test | 59 } // namespace test |
| 59 } // namespace webrtc | 60 } // namespace webrtc |
| 60 | 61 |
| 61 #endif // WEBRTC_AUDIO_TEST_LOW_BANDWIDTH_AUDIO_TEST_H_ | 62 #endif // WEBRTC_AUDIO_TEST_LOW_BANDWIDTH_AUDIO_TEST_H_ |
| OLD | NEW |