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

Unified Diff: content/child/process_control_impl.cc

Issue 1544293002: Convert Pass()→std::move() in //content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « content/child/permissions/permission_dispatcher.cc ('k') | content/child/request_extra_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/process_control_impl.cc
diff --git a/content/child/process_control_impl.cc b/content/child/process_control_impl.cc
index f1e6c3d15541c39e7bf05185862fd6aaafdf85d9..a53c01129e6c16bc5688e135afc7ddddb7cab2ac 100644
--- a/content/child/process_control_impl.cc
+++ b/content/child/process_control_impl.cc
@@ -4,6 +4,8 @@
#include "content/child/process_control_impl.h"
+#include <utility>
+
#include "base/stl_util.h"
#include "content/public/common/content_client.h"
#include "mojo/shell/static_application_loader.h"
@@ -38,7 +40,7 @@ void ProcessControlImpl::LoadApplication(
}
callback.Run(true);
- it->second->Load(application_url, request.Pass());
+ it->second->Load(application_url, std::move(request));
}
} // namespace content
« no previous file with comments | « content/child/permissions/permission_dispatcher.cc ('k') | content/child/request_extra_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698