Add default implementation of deprecated StartAecDump method.

Intended to enable deletion in downstream mock classes.

Tbr: kwiberg@webrtc.org
Bug: webrtc:6463
Change-Id: Iecc568c3ef6a983d21467a2b02ad61c59cac7e4e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/142231
Reviewed-by: Niels Moller <nisse@webrtc.org>
Reviewed-by: Alex Loiko <aleloi@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28318}
This commit is contained in:
Niels Möller
2019-06-18 15:54:32 +02:00
committed by Commit Bot
parent 4d504c76cb
commit 505bac209b

View File

@ -1413,7 +1413,9 @@ class PeerConnectionFactoryInterface : public rtc::RefCountInterface {
return false;
}
// TODO(webrtc:6463): Deprecated; PlatformFile will soon be deleted.
virtual bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) = 0;
virtual bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) {
return false;
}
// Stops logging the AEC dump.
virtual void StopAecDump() = 0;