| Index: talk/app/webrtc/peerconnectioninterface.h
|
| diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h
|
| index 100d8cea07b1397f115dae47f0944b1f23ba8377..799ca150e2ef3100cb76ab11deb79263941db3c4 100644
|
| --- a/talk/app/webrtc/peerconnectioninterface.h
|
| +++ b/talk/app/webrtc/peerconnectioninterface.h
|
| @@ -69,6 +69,7 @@
|
| #define TALK_APP_WEBRTC_PEERCONNECTIONINTERFACE_H_
|
|
|
| #include <string>
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "talk/app/webrtc/datachannelinterface.h"
|
| @@ -604,7 +605,7 @@ class PeerConnectionFactoryInterface : public rtc::RefCountInterface {
|
| PeerConnectionInterface::RTCConfiguration rtc_config;
|
| rtc_config.servers = servers;
|
| return CreatePeerConnection(rtc_config, constraints, allocator_factory,
|
| - dtls_identity_store.Pass(), observer);
|
| + std::move(dtls_identity_store), observer);
|
| }
|
|
|
| virtual rtc::scoped_refptr<MediaStreamInterface>
|
|
|