Index: webrtc/libjingle/xmpp/xmpptask.h |
diff --git a/webrtc/libjingle/xmpp/xmpptask.h b/webrtc/libjingle/xmpp/xmpptask.h |
index 36ffe1b098dfc1abd33dc7252e649d43f157fb9e..3f3a39c791cb295d8630eeb680a198362d4d16de 100644 |
--- a/webrtc/libjingle/xmpp/xmpptask.h |
+++ b/webrtc/libjingle/xmpp/xmpptask.h |
@@ -12,7 +12,9 @@ |
#define WEBRTC_LIBJINGLE_XMPP_XMPPTASK_H_ |
#include <deque> |
+#include <memory> |
#include <string> |
+ |
#include "webrtc/libjingle/xmpp/xmppengine.h" |
#include "webrtc/base/constructormagic.h" |
#include "webrtc/base/sigslot.h" |
@@ -160,7 +162,7 @@ private: |
bool stopped_; |
std::deque<XmlElement*> stanza_queue_; |
- rtc::scoped_ptr<XmlElement> next_stanza_; |
+ std::unique_ptr<XmlElement> next_stanza_; |
std::string id_; |
#if !defined(NDEBUG) |