| Index: webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
 | 
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
 | 
| index c219cb1e001bb793e0461399e774dfcbc9aeade1..d28bd13341779bf0e51d0cbdbbf05e073ae5d048 100644
 | 
| --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
 | 
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
 | 
| @@ -789,17 +789,18 @@ int32_t ModuleRtpRtcpImpl::SendRTCPSliceLossIndication(
 | 
|        GetFeedbackState(), kRtcpSli, 0, 0, false, picture_id);
 | 
|  }
 | 
|  
 | 
| -void ModuleRtpRtcpImpl::SetGenericFECStatus(
 | 
| -    const bool enable,
 | 
| -    const uint8_t payload_type_red,
 | 
| -    const uint8_t payload_type_fec) {
 | 
| -  rtp_sender_.SetGenericFECStatus(enable, payload_type_red, payload_type_fec);
 | 
| -}
 | 
| -
 | 
| -void ModuleRtpRtcpImpl::GenericFECStatus(bool* enable,
 | 
| -                                         uint8_t* payload_type_red,
 | 
| -                                         uint8_t* payload_type_fec) {
 | 
| -  rtp_sender_.GenericFECStatus(enable, payload_type_red, payload_type_fec);
 | 
| +void ModuleRtpRtcpImpl::SetUlpfecConfig(bool ulpfec_enabled,
 | 
| +                                        int red_payload_type,
 | 
| +                                        int ulpfec_payload_type) {
 | 
| +  rtp_sender_.SetUlpfecConfig(ulpfec_enabled, red_payload_type,
 | 
| +                              ulpfec_payload_type);
 | 
| +}
 | 
| +
 | 
| +void ModuleRtpRtcpImpl::UlpfecConfig(bool* ulpfec_enabled,
 | 
| +                                     int* red_payload_type,
 | 
| +                                     int* ulpfec_payload_type) {
 | 
| +  rtp_sender_.UlpfecConfig(ulpfec_enabled, red_payload_type,
 | 
| +                           ulpfec_payload_type);
 | 
|  }
 | 
|  
 | 
|  int32_t ModuleRtpRtcpImpl::SetFecParameters(
 | 
| 
 |