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

Unified Diff: webrtc/test/mock_voice_engine.h

Issue 2737633002: Remove VoEHardware interface usage. (Closed)
Patch Set: comments + compile issue Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/mock_voice_engine.h
diff --git a/webrtc/test/mock_voice_engine.h b/webrtc/test/mock_voice_engine.h
index cdb6a783dadc656121b793ec8ea35509fed89901..ca3fe4f4667557d32cfcab03a84ae4c18f4b5d53 100644
--- a/webrtc/test/mock_voice_engine.h
+++ b/webrtc/test/mock_voice_engine.h
@@ -175,29 +175,6 @@ class MockVoiceEngine : public VoiceEngineImpl {
int(OutStream* stream, CodecInst* compression));
MOCK_METHOD0(StopRecordingMicrophone, int());
- // VoEHardware
- MOCK_METHOD1(GetNumOfRecordingDevices, int(int& devices));
- MOCK_METHOD1(GetNumOfPlayoutDevices, int(int& devices));
- MOCK_METHOD3(GetRecordingDeviceName,
- int(int index, char strNameUTF8[128], char strGuidUTF8[128]));
- MOCK_METHOD3(GetPlayoutDeviceName,
- int(int index, char strNameUTF8[128], char strGuidUTF8[128]));
- MOCK_METHOD2(SetRecordingDevice,
- int(int index, StereoChannel recordingChannel));
- MOCK_METHOD1(SetPlayoutDevice, int(int index));
- MOCK_METHOD1(SetAudioDeviceLayer, int(AudioLayers audioLayer));
- MOCK_METHOD1(GetAudioDeviceLayer, int(AudioLayers& audioLayer));
- MOCK_METHOD1(SetRecordingSampleRate, int(unsigned int samples_per_sec));
- MOCK_CONST_METHOD1(RecordingSampleRate, int(unsigned int* samples_per_sec));
- MOCK_METHOD1(SetPlayoutSampleRate, int(unsigned int samples_per_sec));
- MOCK_CONST_METHOD1(PlayoutSampleRate, int(unsigned int* samples_per_sec));
- MOCK_CONST_METHOD0(BuiltInAECIsAvailable, bool());
- MOCK_METHOD1(EnableBuiltInAEC, int(bool enable));
- MOCK_CONST_METHOD0(BuiltInAGCIsAvailable, bool());
- MOCK_METHOD1(EnableBuiltInAGC, int(bool enable));
- MOCK_CONST_METHOD0(BuiltInNSIsAvailable, bool());
- MOCK_METHOD1(EnableBuiltInNS, int(bool enable));
-
// VoENetwork
MOCK_METHOD2(RegisterExternalTransport,
int(int channel, Transport& transport));
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698