Delete StartRtcEventLog and StopRtcEventLog methods from FakeVoiceEngine

Bug: webrtc:6463
Change-Id: I52a49932334cbf9b5a1aeb17412983c57cb65186
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/141671
Reviewed-by: Ivo Creusen <ivoc@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28250}
This commit is contained in:
Niels Möller 2019-06-12 13:49:17 +02:00 committed by Commit Bot
parent 9c16af7eb7
commit 6e9c2fd08e
2 changed files with 0 additions and 7 deletions

View File

@ -547,11 +547,6 @@ bool FakeVoiceEngine::StartAecDump(webrtc::FileWrapper file,
return false; return false;
} }
void FakeVoiceEngine::StopAecDump() {} void FakeVoiceEngine::StopAecDump() {}
bool FakeVoiceEngine::StartRtcEventLog(rtc::PlatformFile file,
int64_t max_size_bytes) {
return false;
}
void FakeVoiceEngine::StopRtcEventLog() {}
FakeVideoEngine::FakeVideoEngine() FakeVideoEngine::FakeVideoEngine()
: capture_(false), fail_create_channel_(false) { : capture_(false), fail_create_channel_(false) {

View File

@ -528,8 +528,6 @@ class FakeVoiceEngine : public VoiceEngineInterface {
int GetInputLevel(); int GetInputLevel();
bool StartAecDump(webrtc::FileWrapper file, int64_t max_size_bytes) override; bool StartAecDump(webrtc::FileWrapper file, int64_t max_size_bytes) override;
void StopAecDump() override; void StopAecDump() override;
bool StartRtcEventLog(rtc::PlatformFile file, int64_t max_size_bytes);
void StopRtcEventLog();
private: private:
std::vector<FakeVoiceMediaChannel*> channels_; std::vector<FakeVoiceMediaChannel*> channels_;