| Index: webrtc/call/call.cc
|
| diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
|
| index b1f56d3886642a48d8872dd2a309acd1fd0f2b1a..b211a3ca6c139f1fdb8011e2ddf38f51e66ed482 100644
|
| --- a/webrtc/call/call.cc
|
| +++ b/webrtc/call/call.cc
|
| @@ -366,6 +366,8 @@ class Call : public webrtc::Call,
|
| // min >= 0, start != 0, max == -1 || max > 0
|
| Config::BitrateConfig base_bitrate_config_;
|
|
|
| + void PrintDebugStuff() override;
|
| +
|
| RTC_DISALLOW_COPY_AND_ASSIGN(Call);
|
| };
|
| } // namespace internal
|
| @@ -1440,6 +1442,11 @@ void Call::NotifyBweOfReceivedPacket(const RtpPacketReceived& packet,
|
| }
|
| }
|
|
|
| +void Call::PrintDebugStuff() {
|
| + transport_send_->send_side_cc()->PrintDebugStuff();
|
| + print_ = true;
|
| +}
|
| +
|
| } // namespace internal
|
|
|
| } // namespace webrtc
|
|
|