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

Unified Diff: content/common/service_manager/child_connection.cc

Issue 2592623002: mojo:: Introduce InterfaceRequest ctor that takes in InterfacePtr* (Closed)
Patch Set: Rebase + response to review Created 4 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: content/common/service_manager/child_connection.cc
diff --git a/content/common/service_manager/child_connection.cc b/content/common/service_manager/child_connection.cc
index 45bbdaa6ca32874ff653d8ac4b20a9459a813d24..d86117f70dec9fba3b2397dd7179ddb6433fb46e 100644
--- a/content/common/service_manager/child_connection.cc
+++ b/content/common/service_manager/child_connection.cc
@@ -91,8 +91,8 @@ class ChildConnection::IOThreadContext
service_manager::mojom::ServicePtr service;
service.Bind(mojo::InterfacePtrInfo<service_manager::mojom::Service>(
std::move(service_pipe), 0u));
- service_manager::mojom::PIDReceiverRequest pid_receiver_request =
- mojo::MakeRequest(&pid_receiver_);
+ service_manager::mojom::PIDReceiverRequest pid_receiver_request(
+ &pid_receiver_);
service_manager::Connector::ConnectParams params(child_identity);
params.set_client_process_connection(std::move(service),
« no previous file with comments | « content/browser/service_manager/service_manager_context.cc ('k') | content/public/browser/utility_process_mojo_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698