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

Side by Side Diff: webrtc/modules/audio_coding/neteq/mock/mock_decoder_database.h

Issue 2276913002: DecoderDatabase: Made several methods nonvirtual to minimize mockable interface (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Turned DecoderInfo factory into a raw pointer. Removed two unnecessary comments. Created 4 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_
12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ 12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_
13 13
14 #include <string> 14 #include <string>
15 15
16 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" 16 #include "webrtc/modules/audio_coding/neteq/decoder_database.h"
17 17
18 #include "testing/gmock/include/gmock/gmock.h" 18 #include "testing/gmock/include/gmock/gmock.h"
19 19
20 namespace webrtc { 20 namespace webrtc {
21 21
22 class MockDecoderDatabase : public DecoderDatabase { 22 class MockDecoderDatabase : public DecoderDatabase {
23 public: 23 public:
24 MockDecoderDatabase() : DecoderDatabase(nullptr) {} 24 explicit MockDecoderDatabase(
25 rtc::scoped_refptr<AudioDecoderFactory> factory = nullptr)
26 : DecoderDatabase(factory) {}
25 virtual ~MockDecoderDatabase() { Die(); } 27 virtual ~MockDecoderDatabase() { Die(); }
26 MOCK_METHOD0(Die, void()); 28 MOCK_METHOD0(Die, void());
27 MOCK_CONST_METHOD0(Empty, 29 MOCK_CONST_METHOD0(Empty,
28 bool()); 30 bool());
29 MOCK_CONST_METHOD0(Size, 31 MOCK_CONST_METHOD0(Size,
30 int()); 32 int());
31 MOCK_METHOD0(Reset, 33 MOCK_METHOD0(Reset,
32 void()); 34 void());
33 MOCK_METHOD3(RegisterPayload, 35 MOCK_METHOD3(RegisterPayload,
34 int(uint8_t rtp_payload_type, NetEqDecoder codec_type, 36 int(uint8_t rtp_payload_type, NetEqDecoder codec_type,
35 const std::string& name)); 37 const std::string& name));
36 MOCK_METHOD4(InsertExternal, 38 MOCK_METHOD4(InsertExternal,
37 int(uint8_t rtp_payload_type, 39 int(uint8_t rtp_payload_type,
38 NetEqDecoder codec_type, 40 NetEqDecoder codec_type,
39 const std::string& codec_name, 41 const std::string& codec_name,
40 AudioDecoder* decoder)); 42 AudioDecoder* decoder));
41 MOCK_METHOD1(Remove, 43 MOCK_METHOD1(Remove,
42 int(uint8_t rtp_payload_type)); 44 int(uint8_t rtp_payload_type));
43 MOCK_CONST_METHOD1(GetDecoderInfo, 45 MOCK_CONST_METHOD1(GetDecoderInfo,
44 const DecoderInfo*(uint8_t rtp_payload_type)); 46 const DecoderInfo*(uint8_t rtp_payload_type));
45 MOCK_CONST_METHOD1(GetRtpPayloadType, 47 MOCK_CONST_METHOD1(GetRtpPayloadType,
46 uint8_t(NetEqDecoder codec_type)); 48 uint8_t(NetEqDecoder codec_type));
47 MOCK_METHOD1(GetDecoder,
48 AudioDecoder*(uint8_t rtp_payload_type));
49 MOCK_CONST_METHOD2(IsType,
50 bool(uint8_t rtp_payload_type, NetEqDecoder codec_type));
51 MOCK_CONST_METHOD1(IsComfortNoise,
52 bool(uint8_t rtp_payload_type));
53 MOCK_CONST_METHOD1(IsDtmf,
54 bool(uint8_t rtp_payload_type));
55 MOCK_CONST_METHOD1(IsRed,
56 bool(uint8_t rtp_payload_type));
57 MOCK_METHOD2(SetActiveDecoder, 49 MOCK_METHOD2(SetActiveDecoder,
58 int(uint8_t rtp_payload_type, bool* new_decoder)); 50 int(uint8_t rtp_payload_type, bool* new_decoder));
59 MOCK_METHOD0(GetActiveDecoder, 51 MOCK_CONST_METHOD0(GetActiveDecoder,
60 AudioDecoder*()); 52 AudioDecoder*());
61 MOCK_METHOD1(SetActiveCngDecoder, 53 MOCK_METHOD1(SetActiveCngDecoder,
62 int(uint8_t rtp_payload_type)); 54 int(uint8_t rtp_payload_type));
63 MOCK_METHOD0(GetActiveCngDecoder, 55 MOCK_CONST_METHOD0(GetActiveCngDecoder,
64 ComfortNoiseDecoder*()); 56 ComfortNoiseDecoder*());
65 MOCK_CONST_METHOD1(CheckPayloadTypes,
66 int(const PacketList& packet_list));
67 }; 57 };
68 58
69 } // namespace webrtc 59 } // namespace webrtc
70 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_ 60 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DECODER_DATABASE_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/neteq/decoder_database.cc ('k') | webrtc/modules/audio_coding/neteq/neteq_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698