| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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_TEST_CALL_TEST_H_ | 10 #ifndef WEBRTC_TEST_CALL_TEST_H_ |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 const std::vector<AudioReceiveStream*>& receive_streams); | 216 const std::vector<AudioReceiveStream*>& receive_streams); |
| 217 | 217 |
| 218 virtual void ModifyFlexfecConfigs( | 218 virtual void ModifyFlexfecConfigs( |
| 219 std::vector<FlexfecReceiveStream::Config>* receive_configs); | 219 std::vector<FlexfecReceiveStream::Config>* receive_configs); |
| 220 virtual void OnFlexfecStreamsCreated( | 220 virtual void OnFlexfecStreamsCreated( |
| 221 const std::vector<FlexfecReceiveStream*>& receive_streams); | 221 const std::vector<FlexfecReceiveStream*>& receive_streams); |
| 222 | 222 |
| 223 virtual void OnFrameGeneratorCapturerCreated( | 223 virtual void OnFrameGeneratorCapturerCreated( |
| 224 FrameGeneratorCapturer* frame_generator_capturer); | 224 FrameGeneratorCapturer* frame_generator_capturer); |
| 225 | 225 |
| 226 virtual void OnTestFinished(); | 226 virtual void OnStreamsStopped(); |
| 227 | 227 |
| 228 std::unique_ptr<webrtc::RtcEventLog> event_log_; | 228 std::unique_ptr<webrtc::RtcEventLog> event_log_; |
| 229 }; | 229 }; |
| 230 | 230 |
| 231 class SendTest : public BaseTest { | 231 class SendTest : public BaseTest { |
| 232 public: | 232 public: |
| 233 explicit SendTest(unsigned int timeout_ms); | 233 explicit SendTest(unsigned int timeout_ms); |
| 234 | 234 |
| 235 bool ShouldCreateReceivers() const override; | 235 bool ShouldCreateReceivers() const override; |
| 236 }; | 236 }; |
| 237 | 237 |
| 238 class EndToEndTest : public BaseTest { | 238 class EndToEndTest : public BaseTest { |
| 239 public: | 239 public: |
| 240 EndToEndTest(); | 240 EndToEndTest(); |
| 241 explicit EndToEndTest(unsigned int timeout_ms); | 241 explicit EndToEndTest(unsigned int timeout_ms); |
| 242 | 242 |
| 243 bool ShouldCreateReceivers() const override; | 243 bool ShouldCreateReceivers() const override; |
| 244 }; | 244 }; |
| 245 | 245 |
| 246 } // namespace test | 246 } // namespace test |
| 247 } // namespace webrtc | 247 } // namespace webrtc |
| 248 | 248 |
| 249 #endif // WEBRTC_TEST_CALL_TEST_H_ | 249 #endif // WEBRTC_TEST_CALL_TEST_H_ |
| OLD | NEW |