Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1250)

Unified Diff: webrtc/modules/congestion_controller/send_side_congestion_controller.cc

Issue 2913793002: Address some violations of chromium-style. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 66035b08588ac6d4faa3b127e80f9144835b392a..35829c179f23e78905d51bd5a34f23c6ec465a4e 100644
--- a/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
+++ b/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
@@ -181,6 +181,14 @@ int64_t SendSideCongestionController::GetFirstPacketTimeMs() const {
return pacer_->FirstSentPacketTimeMs();
}
+PacedSender* SendSideCongestionController::pacer() {
+ return pacer_.get();
+}
+TransportFeedbackObserver*
danilchap 2017/05/30 14:55:39 add an empty line above
nisse-webrtc 2017/05/31 08:44:54 Done.
+SendSideCongestionController::GetTransportFeedbackObserver() {
+ return this;
+}
+
void SendSideCongestionController::SignalNetworkState(NetworkState state) {
LOG(LS_INFO) << "SignalNetworkState "
<< (state == kNetworkUp ? "Up" : "Down");

Powered by Google App Engine
This is Rietveld 408576698