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

Unified Diff: remoting/protocol/jingle_info_request.cc

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/jingle_info_request.h ('k') | remoting/protocol/jingle_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/jingle_info_request.cc
diff --git a/remoting/protocol/jingle_info_request.cc b/remoting/protocol/jingle_info_request.cc
index b8044995dceadb8c7f9bbcd90529fa55cc9a62ba..7569dccd52ca0d1c2f42fdfe78fc11870f584586 100644
--- a/remoting/protocol/jingle_info_request.cc
+++ b/remoting/protocol/jingle_info_request.cc
@@ -32,7 +32,7 @@ JingleInfoRequest::~JingleInfoRequest() {}
void JingleInfoRequest::Send(const OnIceConfigCallback& callback) {
on_ice_config_callback_ = callback;
- scoped_ptr<buzz::XmlElement> iq_body(
+ std::unique_ptr<buzz::XmlElement> iq_body(
new buzz::XmlElement(buzz::QN_JINGLE_INFO_QUERY, true));
request_ = iq_sender_.SendIq(
buzz::STR_GET, buzz::STR_EMPTY, std::move(iq_body),
« no previous file with comments | « remoting/protocol/jingle_info_request.h ('k') | remoting/protocol/jingle_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698