| Index: webrtc/modules/congestion_controller/send_side_congestion_controller.cc
|
| diff --git a/webrtc/modules/congestion_controller/send_side_congestion_controller.cc b/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
|
| index e3f84d0e539b5b74ef397fd1255594ee7cc0f0b4..70b2e53b1d6b03bbf7b86614bff0a61129d525d7 100644
|
| --- a/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
|
| +++ b/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
|
| @@ -177,6 +177,10 @@ int64_t SendSideCongestionController::GetPacerQueuingDelayMs() const {
|
| return IsNetworkDown() ? 0 : pacer_->QueueInMs();
|
| }
|
|
|
| +int64_t SendSideCongestionController::GetFirstPacketTimeMs() const {
|
| + return pacer_->FirstSentPacketTimeMs();
|
| +}
|
| +
|
| void SendSideCongestionController::SignalNetworkState(NetworkState state) {
|
| LOG(LS_INFO) << "SignalNetworkState "
|
| << (state == kNetworkUp ? "Up" : "Down");
|
|
|