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

Unified Diff: remoting/host/chromoting_host.cc

Issue 2627433003: Remove ScopedVector from remoting/. (Closed)
Patch Set: Created 3 years, 11 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
Index: remoting/host/chromoting_host.cc
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
index 65727137b934e82d076909e164840c4a5f2e9171..f655c7e63af1dfe1311d504fc36078aade51201a 100644
--- a/remoting/host/chromoting_host.cc
+++ b/remoting/host/chromoting_host.cc
@@ -125,7 +125,7 @@ void ChromotingHost::RemoveStatusObserver(HostStatusObserver* observer) {
}
void ChromotingHost::AddExtension(std::unique_ptr<HostExtension> extension) {
- extensions_.push_back(extension.release());
+ extensions_.push_back(std::move(extension));
}
void ChromotingHost::SetAuthenticatorFactory(
@@ -261,7 +261,7 @@ void ChromotingHost::OnIncomingSession(
// Create a ClientSession object.
clients_.push_back(base::MakeUnique<ClientSession>(
this, std::move(connection), desktop_environment_factory_, options,
- max_session_duration_, pairing_registry_, extensions_.get()));
+ max_session_duration_, pairing_registry_, extensions_));
}
} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698