| 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 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 MOCK_METHOD1(SetTargetAudioBitrate, void(int target_audio_bitrate_bps)); | 34 MOCK_METHOD1(SetTargetAudioBitrate, void(int target_audio_bitrate_bps)); |
| 35 | 35 |
| 36 MOCK_METHOD1(SetOverhead, void(size_t overhead_bytes_per_packet)); | 36 MOCK_METHOD1(SetOverhead, void(size_t overhead_bytes_per_packet)); |
| 37 | 37 |
| 38 MOCK_METHOD0(GetEncoderRuntimeConfig, AudioEncoderRuntimeConfig()); | 38 MOCK_METHOD0(GetEncoderRuntimeConfig, AudioEncoderRuntimeConfig()); |
| 39 | 39 |
| 40 MOCK_METHOD1(StartDebugDump, void(FILE* file_handle)); | 40 MOCK_METHOD1(StartDebugDump, void(FILE* file_handle)); |
| 41 | 41 |
| 42 MOCK_METHOD0(StopDebugDump, void()); | 42 MOCK_METHOD0(StopDebugDump, void()); |
| 43 |
| 44 MOCK_CONST_METHOD0(GetStats, ANAStats()); |
| 43 }; | 45 }; |
| 44 | 46 |
| 45 } // namespace webrtc | 47 } // namespace webrtc |
| 46 | 48 |
| 47 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_MOCK_MOCK_AUDIO_NET
WORK_ADAPTOR_H_ | 49 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_MOCK_MOCK_AUDIO_NET
WORK_ADAPTOR_H_ |
| OLD | NEW |