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

Unified Diff: shell/application_manager/application_manager.h

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/application_manager/application_manager.h
diff --git a/shell/application_manager/application_manager.h b/shell/application_manager/application_manager.h
index f3224f158515871d4c4ec41d287170faa184debd..b5771809d5bc41028d6264d0067c3df28a08479a 100644
--- a/shell/application_manager/application_manager.h
+++ b/shell/application_manager/application_manager.h
@@ -89,7 +89,7 @@ class ApplicationManager {
mojo::InterfacePtr<Interface>* ptr) {
mojo::ScopedMessagePipeHandle service_handle =
ConnectToServiceByName(application_url, Interface::Name_);
- ptr->Bind(mojo::InterfacePtrInfo<Interface>(service_handle.Pass(), 0u));
+ ptr->Bind(mojo::InterfaceHandle<Interface>(service_handle.Pass(), 0u));
}
mojo::ScopedMessagePipeHandle ConnectToServiceByName(

Powered by Google App Engine
This is Rietveld 408576698