Use base/scoped_ptr.h; system_wrappers/interface/scoped_ptr.h is going away
BUG= R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/36229004 Cr-Commit-Position: refs/heads/master@{#8517} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8517 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -9,10 +9,10 @@
|
||||
*/
|
||||
#include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
|
||||
|
||||
#include "webrtc/base/scoped_ptr.h"
|
||||
#include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h"
|
||||
#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
|
||||
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
|
||||
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
@ -31,7 +31,7 @@ class RtpHeaderParserImpl : public RtpHeaderParser {
|
||||
virtual bool DeregisterRtpHeaderExtension(RTPExtensionType type) OVERRIDE;
|
||||
|
||||
private:
|
||||
scoped_ptr<CriticalSectionWrapper> critical_section_;
|
||||
rtc::scoped_ptr<CriticalSectionWrapper> critical_section_;
|
||||
RtpHeaderExtensionMap rtp_header_extension_map_ GUARDED_BY(critical_section_);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user