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

Unified Diff: shell/child_process_host.cc

Issue 1660403003: Mojo C++ bindings: Rename InterfaceInfoPtr -> InterfaceHandle (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: using {{InterfaceName}}Handle = InterfaceHandle<{{InterfaceName}}> Created 4 years, 11 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: shell/child_process_host.cc
diff --git a/shell/child_process_host.cc b/shell/child_process_host.cc
index 9ed62da3a94cc4c7057dbe1b592b54b0f6abd7aa..7ce65f69a395e1dc83c9aa980af30e0b8461bb9d 100644
--- a/shell/child_process_host.cc
+++ b/shell/child_process_host.cc
@@ -78,7 +78,7 @@ void ChildProcessHost::Start(const NativeApplicationOptions& options) {
// |channel_info_|, but only after the callback has been called.
CHECK(channel_info_);
- controller_.Bind(mojo::InterfacePtrInfo<ChildController>(handle.Pass(), 0u));
+ controller_.Bind(mojo::InterfaceHandle<ChildController>(handle.Pass(), 0u));
controller_.set_connection_error_handler([this]() { OnConnectionError(); });
CHECK(base::PostTaskAndReplyWithResult(

Powered by Google App Engine
This is Rietveld 408576698