| Index: webrtc/api/peerconnectionfactory.h
|
| diff --git a/webrtc/api/peerconnectionfactory.h b/webrtc/api/peerconnectionfactory.h
|
| index 3ba4124096e4300f79593460f70d67b8af48eb03..f87eea5d3a375ef6ada95d17f2648fe58225d21e 100644
|
| --- a/webrtc/api/peerconnectionfactory.h
|
| +++ b/webrtc/api/peerconnectionfactory.h
|
| @@ -67,8 +67,10 @@ class PeerConnectionFactory : public PeerConnectionFactoryInterface {
|
|
|
| bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) override;
|
| void StopAecDump() override;
|
| - bool StartRtcEventLog(rtc::PlatformFile file) override;
|
| - void StopRtcEventLog() override;
|
| + // TODO(ivoc) Remove after Chrome is updated.
|
| + bool StartRtcEventLog(rtc::PlatformFile file) override { return false; }
|
| + // TODO(ivoc) Remove after Chrome is updated.
|
| + void StopRtcEventLog() override {}
|
|
|
| virtual webrtc::MediaControllerInterface* CreateMediaController(
|
| const cricket::MediaConfig& config) const;
|
|
|