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

Unified Diff: remoting/host/signaling_connector.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/host/setup/start_host.cc ('k') | remoting/host/signaling_connector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/signaling_connector.h
diff --git a/remoting/host/signaling_connector.h b/remoting/host/signaling_connector.h
index 81a119765de56ce611ee5274a626dde94bf84c35..a65fcc2a78ea4a63dd77ba3594f487c267af9ebd 100644
--- a/remoting/host/signaling_connector.h
+++ b/remoting/host/signaling_connector.h
@@ -32,7 +32,7 @@ class SignalingConnector
public:
// The |auth_failed_callback| is called when authentication fails.
SignalingConnector(XmppSignalStrategy* signal_strategy,
- scoped_ptr<DnsBlackholeChecker> dns_blackhole_checker,
+ std::unique_ptr<DnsBlackholeChecker> dns_blackhole_checker,
OAuthTokenGetter* oauth_token_getter,
const base::Closure& auth_failed_callback);
~SignalingConnector() override;
@@ -62,7 +62,7 @@ class SignalingConnector
XmppSignalStrategy* signal_strategy_;
base::Closure auth_failed_callback_;
- scoped_ptr<DnsBlackholeChecker> dns_blackhole_checker_;
+ std::unique_ptr<DnsBlackholeChecker> dns_blackhole_checker_;
OAuthTokenGetter* oauth_token_getter_;
« no previous file with comments | « remoting/host/setup/start_host.cc ('k') | remoting/host/signaling_connector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698