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

Unified Diff: remoting/protocol/jingle_info_request.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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 | « remoting/protocol/it2me_host_authenticator_factory.cc ('k') | remoting/protocol/jingle_info_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/jingle_info_request.h
diff --git a/remoting/protocol/jingle_info_request.h b/remoting/protocol/jingle_info_request.h
index f905539ca4c2aba4159ac062c02b77a2379f12e0..a7b3d775978290c97a0586810a5f208cc8f7ce12 100644
--- a/remoting/protocol/jingle_info_request.h
+++ b/remoting/protocol/jingle_info_request.h
@@ -5,13 +5,13 @@
#ifndef REMOTING_PROTOCOL_JINGLE_INFO_REQUEST_H_
#define REMOTING_PROTOCOL_JINGLE_INFO_REQUEST_H_
+#include <memory>
#include <set>
#include <string>
#include <vector>
#include "base/callback.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "remoting/protocol/ice_config_request.h"
#include "remoting/signaling/iq_sender.h"
@@ -38,7 +38,7 @@ class JingleInfoRequest : public IceConfigRequest {
void OnResponse(IqRequest* request, const buzz::XmlElement* stanza);
IqSender iq_sender_;
- scoped_ptr<IqRequest> request_;
+ std::unique_ptr<IqRequest> request_;
OnIceConfigCallback on_ice_config_callback_;
DISALLOW_COPY_AND_ASSIGN(JingleInfoRequest);
« no previous file with comments | « remoting/protocol/it2me_host_authenticator_factory.cc ('k') | remoting/protocol/jingle_info_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698