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

Unified Diff: webrtc/libjingle/xmpp/xmppclient.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/rostermoduleimpl.h ('k') | webrtc/libjingle/xmpp/xmppclient.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/libjingle/xmpp/xmppclient.h
diff --git a/webrtc/libjingle/xmpp/xmppclient.h b/webrtc/libjingle/xmpp/xmppclient.h
index 84ca6c1418d8ceea001885c42bf8bf70537dc576..dba591cb44a4769e08794ca63379cf031d31e6d0 100644
--- a/webrtc/libjingle/xmpp/xmppclient.h
+++ b/webrtc/libjingle/xmpp/xmppclient.h
@@ -11,7 +11,9 @@
#ifndef WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_
#define WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_
+#include <memory>
#include <string>
+
#include "webrtc/libjingle/xmpp/asyncsocket.h"
#include "webrtc/libjingle/xmpp/xmppclientsettings.h"
#include "webrtc/libjingle/xmpp/xmppengine.h"
@@ -136,7 +138,7 @@ public:
class Private;
friend class Private;
- rtc::scoped_ptr<Private> d_;
+ std::unique_ptr<Private> d_;
bool delivering_signal_;
bool valid_;
« no previous file with comments | « webrtc/libjingle/xmpp/rostermoduleimpl.h ('k') | webrtc/libjingle/xmpp/xmppclient.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698