| Index: webrtc/api/webrtcsessiondescriptionfactory.cc
|
| diff --git a/webrtc/api/webrtcsessiondescriptionfactory.cc b/webrtc/api/webrtcsessiondescriptionfactory.cc
|
| index 584125f989573b8c0bf8d734da0df9f02fc5b41a..e88262fbdc5a1921e7e407b70b85f07d2bd98835 100644
|
| --- a/webrtc/api/webrtcsessiondescriptionfactory.cc
|
| +++ b/webrtc/api/webrtcsessiondescriptionfactory.cc
|
| @@ -64,7 +64,7 @@ struct CreateSessionDescriptionMsg : public rtc::MessageData {
|
|
|
| rtc::scoped_refptr<webrtc::CreateSessionDescriptionObserver> observer;
|
| std::string error;
|
| - rtc::scoped_ptr<webrtc::SessionDescriptionInterface> description;
|
| + std::unique_ptr<webrtc::SessionDescriptionInterface> description;
|
| };
|
| } // namespace
|
|
|
| @@ -127,7 +127,7 @@ void WebRtcSessionDescriptionFactory::CopyCandidatesFromSessionDescription(
|
| WebRtcSessionDescriptionFactory::WebRtcSessionDescriptionFactory(
|
| rtc::Thread* signaling_thread,
|
| cricket::ChannelManager* channel_manager,
|
| - rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
| + std::unique_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
| const rtc::scoped_refptr<WebRtcIdentityRequestObserver>&
|
| identity_request_observer,
|
| WebRtcSession* session,
|
| @@ -168,7 +168,7 @@ WebRtcSessionDescriptionFactory::WebRtcSessionDescriptionFactory(
|
| WebRtcSessionDescriptionFactory::WebRtcSessionDescriptionFactory(
|
| rtc::Thread* signaling_thread,
|
| cricket::ChannelManager* channel_manager,
|
| - rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
| + std::unique_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
| WebRtcSession* session,
|
| const std::string& session_id)
|
| : WebRtcSessionDescriptionFactory(
|
|
|