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

Unified Diff: test/mock_voice_engine.h

Issue 3013033002: Remove VoEFile (Closed)
Patch Set: rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | voice_engine/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mock_voice_engine.h
diff --git a/test/mock_voice_engine.h b/test/mock_voice_engine.h
index 8f8fdac8faccf5c9a99d9d6b99cc75bf30b75406..bd65b0ba5ea7f3707a0a2d5e01f767c37b25442c 100644
--- a/test/mock_voice_engine.h
+++ b/test/mock_voice_engine.h
@@ -134,55 +134,6 @@ class MockVoiceEngine : public VoiceEngineImpl {
MOCK_METHOD2(SetOpusMaxPlaybackRate, int(int channel, int frequency_hz));
MOCK_METHOD2(SetOpusDtx, int(int channel, bool enable_dtx));
- // VoEFile
- MOCK_METHOD7(StartPlayingFileLocally,
- int(int channel,
- const char fileNameUTF8[1024],
- bool loop,
- FileFormats format,
- float volumeScaling,
- int startPointMs,
- int stopPointMs));
- MOCK_METHOD6(StartPlayingFileLocally,
- int(int channel,
- InStream* stream,
- FileFormats format,
- float volumeScaling,
- int startPointMs,
- int stopPointMs));
- MOCK_METHOD1(StopPlayingFileLocally, int(int channel));
- MOCK_METHOD1(IsPlayingFileLocally, int(int channel));
- MOCK_METHOD6(StartPlayingFileAsMicrophone,
- int(int channel,
- const char fileNameUTF8[1024],
- bool loop,
- bool mixWithMicrophone,
- FileFormats format,
- float volumeScaling));
- MOCK_METHOD5(StartPlayingFileAsMicrophone,
- int(int channel,
- InStream* stream,
- bool mixWithMicrophone,
- FileFormats format,
- float volumeScaling));
- MOCK_METHOD1(StopPlayingFileAsMicrophone, int(int channel));
- MOCK_METHOD1(IsPlayingFileAsMicrophone, int(int channel));
- MOCK_METHOD4(StartRecordingPlayout,
- int(int channel,
- const char* fileNameUTF8,
- CodecInst* compression,
- int maxSizeBytes));
- MOCK_METHOD1(StopRecordingPlayout, int(int channel));
- MOCK_METHOD3(StartRecordingPlayout,
- int(int channel, OutStream* stream, CodecInst* compression));
- MOCK_METHOD3(StartRecordingMicrophone,
- int(const char* fileNameUTF8,
- CodecInst* compression,
- int maxSizeBytes));
- MOCK_METHOD2(StartRecordingMicrophone,
- int(OutStream* stream, CodecInst* compression));
- MOCK_METHOD0(StopRecordingMicrophone, int());
-
// VoENetwork
MOCK_METHOD2(RegisterExternalTransport,
int(int channel, Transport& transport));
« no previous file with comments | « no previous file | voice_engine/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698