From 19d0104abbeb808e0ba27c56dc37916bbe5375ce Mon Sep 17 00:00:00 2001 From: Per Kjellander Date: Sun, 24 Feb 2019 20:04:14 +0100 Subject: [PATCH] Make RtpRtcp::Configuration::field_trials ptr const Fix mistake from https://webrtc-review.googlesource.com/c/src/+/123447 TBR=danilchap@webrtc.org BUG: webrtc:10335 Change-Id: I5643812e95e25a65e14c9a27e48a4b1cb0287f7a Reviewed-on: https://webrtc-review.googlesource.com/c/124125 Reviewed-by: Per Kjellander Commit-Queue: Per Kjellander Cr-Commit-Position: refs/heads/master@{#26829} --- modules/rtp_rtcp/include/rtp_rtcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rtp_rtcp/include/rtp_rtcp.h b/modules/rtp_rtcp/include/rtp_rtcp.h index 5f7e0d901a..7829b8303d 100644 --- a/modules/rtp_rtcp/include/rtp_rtcp.h +++ b/modules/rtp_rtcp/include/rtp_rtcp.h @@ -110,7 +110,7 @@ class RtpRtcp : public Module, public RtcpFeedbackSenderInterface { // If set, field trials are read from |field_trials|, otherwise // defaults to webrtc::FieldTrialBasedConfig. - WebRtcKeyValueConfig* field_trials = nullptr; + const WebRtcKeyValueConfig* field_trials = nullptr; private: RTC_DISALLOW_COPY_AND_ASSIGN(Configuration);