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

Unified Diff: remoting/protocol/ice_connection_to_client.cc

Issue 2443103003: Remove unused include in sequenced_worker_pool.h (Closed)
Patch Set: and more! Created 4 years, 2 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/protocol/ice_connection_to_client.cc
diff --git a/remoting/protocol/ice_connection_to_client.cc b/remoting/protocol/ice_connection_to_client.cc
index c4a42f16cd9cd2b9fbdd789eba31c38af444b4ff..fb96beb6743bb71295d80104fc9d14ccb2d8b44b 100644
--- a/remoting/protocol/ice_connection_to_client.cc
+++ b/remoting/protocol/ice_connection_to_client.cc
@@ -51,8 +51,8 @@ IceConnectionToClient::IceConnectionToClient(
scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner)
: event_handler_(nullptr),
session_(std::move(session)),
- video_encode_task_runner_(video_encode_task_runner),
- audio_task_runner_(audio_task_runner),
+ video_encode_task_runner_(std::move(video_encode_task_runner)),
+ audio_task_runner_(std::move(audio_task_runner)),
transport_(transport_context, this),
control_dispatcher_(new HostControlDispatcher()),
event_dispatcher_(new HostEventDispatcher()),

Powered by Google App Engine
This is Rietveld 408576698