| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 | 10 |
| 11 #include <utility> | 11 #include <utility> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "webrtc/base/fakeclock.h" | |
| 15 #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" | 14 #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" |
| 16 #include "webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adapto
r_impl.h" | 15 #include "webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adapto
r_impl.h" |
| 17 #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_controller
.h" | 16 #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_controller
.h" |
| 18 #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_controller
_manager.h" | 17 #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_controller
_manager.h" |
| 19 #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_debug_dump
_writer.h" | 18 #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_debug_dump
_writer.h" |
| 19 #include "webrtc/rtc_base/fakeclock.h" |
| 20 #include "webrtc/test/gtest.h" | 20 #include "webrtc/test/gtest.h" |
| 21 | 21 |
| 22 namespace webrtc { | 22 namespace webrtc { |
| 23 | 23 |
| 24 using ::testing::_; | 24 using ::testing::_; |
| 25 using ::testing::NiceMock; | 25 using ::testing::NiceMock; |
| 26 using ::testing::Return; | 26 using ::testing::Return; |
| 27 using ::testing::SetArgPointee; | 27 using ::testing::SetArgPointee; |
| 28 | 28 |
| 29 namespace { | 29 namespace { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 EXPECT_CALL(*states.mock_controllers[0], MakeDecision(_)) | 264 EXPECT_CALL(*states.mock_controllers[0], MakeDecision(_)) |
| 265 .WillOnce(SetArgPointee<0>(config)); | 265 .WillOnce(SetArgPointee<0>(config)); |
| 266 | 266 |
| 267 EXPECT_CALL(*states.event_log, | 267 EXPECT_CALL(*states.event_log, |
| 268 LogAudioNetworkAdaptation(EncoderRuntimeConfigIs(config))) | 268 LogAudioNetworkAdaptation(EncoderRuntimeConfigIs(config))) |
| 269 .Times(1); | 269 .Times(1); |
| 270 states.audio_network_adaptor->GetEncoderRuntimeConfig(); | 270 states.audio_network_adaptor->GetEncoderRuntimeConfig(); |
| 271 } | 271 } |
| 272 | 272 |
| 273 } // namespace webrtc | 273 } // namespace webrtc |
| OLD | NEW |