Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(615)

Unified Diff: webrtc/libjingle/xmpp/iqtask.h

Issue 1935893002: Replace scoped_ptr with unique_ptr in webrtc/libjingle/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/libjingle/xmpp/hangoutpubsubclient_unittest.cc ('k') | webrtc/libjingle/xmpp/jingleinfotask.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/libjingle/xmpp/iqtask.h
diff --git a/webrtc/libjingle/xmpp/iqtask.h b/webrtc/libjingle/xmpp/iqtask.h
index 1d50c3839477b2a3e9b18d343957724add09f88e..0db00711e8623cc65d3c52d6d6af3afa983ccdc2 100644
--- a/webrtc/libjingle/xmpp/iqtask.h
+++ b/webrtc/libjingle/xmpp/iqtask.h
@@ -11,6 +11,7 @@
#ifndef WEBRTC_LIBJINGLE_XMPP_IQTASK_H_
#define WEBRTC_LIBJINGLE_XMPP_IQTASK_H_
+#include <memory>
#include <string>
#include "webrtc/libjingle/xmpp/xmppengine.h"
@@ -40,7 +41,7 @@ class IqTask : public XmppTask {
virtual int OnTimeout();
Jid to_;
- rtc::scoped_ptr<XmlElement> stanza_;
+ std::unique_ptr<XmlElement> stanza_;
};
} // namespace buzz
« no previous file with comments | « webrtc/libjingle/xmpp/hangoutpubsubclient_unittest.cc ('k') | webrtc/libjingle/xmpp/jingleinfotask.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698