| Index: webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h
 | 
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h b/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h
 | 
| index f2a60ff855a81003657231e8f04a3afbede18717..663b883295d70e8f946e45f008700036a16da9a5 100644
 | 
| --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h
 | 
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h
 | 
| @@ -11,11 +11,10 @@
 | 
|  #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_STRATEGY_H_
 | 
|  #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_STRATEGY_H_
 | 
|  
 | 
| -#include "webrtc/base/scoped_ptr.h"
 | 
| +#include "webrtc/base/criticalsection.h"
 | 
|  #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
 | 
|  #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
 | 
|  #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
 | 
| -#include "webrtc/system_wrappers/include/critical_section_wrapper.h"
 | 
|  #include "webrtc/typedefs.h"
 | 
|  
 | 
|  namespace webrtc {
 | 
| @@ -95,7 +94,7 @@ class RTPReceiverStrategy {
 | 
|    // packet.
 | 
|    explicit RTPReceiverStrategy(RtpData* data_callback);
 | 
|  
 | 
| -  rtc::scoped_ptr<CriticalSectionWrapper> crit_sect_;
 | 
| +  rtc::CriticalSection crit_sect_;
 | 
|    PayloadUnion last_payload_;
 | 
|    RtpData* data_callback_;
 | 
|  };
 | 
| 
 |