diff --git a/api/peer_connection_interface.h b/api/peer_connection_interface.h index 0b2bfa473e..c2e2f50cdc 100644 --- a/api/peer_connection_interface.h +++ b/api/peer_connection_interface.h @@ -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;