Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Side by Side Diff: webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_audio_network_adaptor.h

Issue 3011623002: Add new ANA stats to GetStats() to count the number of actions taken by each controller. (Closed)
Patch Set: Fix for failing test. Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698