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

Unified Diff: remoting/host/cast_extension.cc

Issue 1549493004: Use std::move() instead of .Pass() in remoting/host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_not_pass
Patch Set: include <utility> Created 5 years 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/backoff_timer.cc ('k') | remoting/host/cast_extension_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/cast_extension.cc
diff --git a/remoting/host/cast_extension.cc b/remoting/host/cast_extension.cc
index 6b513f6c04e43d32e58e56eeaa824c09d7c75489..cf2d51c30b7f43e887f78ec48e17566533a719f1 100644
--- a/remoting/host/cast_extension.cc
+++ b/remoting/host/cast_extension.cc
@@ -31,11 +31,9 @@ std::string CastExtension::capability() const {
scoped_ptr<HostExtensionSession> CastExtension::CreateExtensionSession(
ClientSessionControl* client_session_control,
protocol::ClientStub* client_stub) {
- return CastExtensionSession::Create(network_task_runner_,
- url_request_context_getter_,
- network_settings_,
- client_session_control,
- client_stub).Pass();
+ return CastExtensionSession::Create(
+ network_task_runner_, url_request_context_getter_, network_settings_,
+ client_session_control, client_stub);
}
} // namespace remoting
« no previous file with comments | « remoting/host/backoff_timer.cc ('k') | remoting/host/cast_extension_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698