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

Unified Diff: components/nacl/renderer/trusted_plugin_channel.cc

Issue 1548203002: Convert Pass()→std::move() in //components/[n-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad headers 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
Index: components/nacl/renderer/trusted_plugin_channel.cc
diff --git a/components/nacl/renderer/trusted_plugin_channel.cc b/components/nacl/renderer/trusted_plugin_channel.cc
index 1ba39fe1efa48025d970c015fc87788197ec0ba5..8428cbb711ee1649e8197267bbba0c9c1db3b918 100644
--- a/components/nacl/renderer/trusted_plugin_channel.cc
+++ b/components/nacl/renderer/trusted_plugin_channel.cc
@@ -23,12 +23,9 @@ TrustedPluginChannel::TrustedPluginChannel(
: nexe_load_manager_(nexe_load_manager),
is_helper_nexe_(is_helper_nexe) {
channel_ = IPC::SyncChannel::Create(
- handle,
- IPC::Channel::MODE_CLIENT,
- this,
- content::RenderThread::Get()->GetIOMessageLoopProxy(),
- true,
- shutdown_event).Pass();
+ handle, IPC::Channel::MODE_CLIENT, this,
+ content::RenderThread::Get()->GetIOMessageLoopProxy(), true,
+ shutdown_event);
}
TrustedPluginChannel::~TrustedPluginChannel() {

Powered by Google App Engine
This is Rietveld 408576698