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

Unified Diff: mojo/public/cpp/application/application_impl.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: mojo/public/cpp/application/application_impl.h
diff --git a/mojo/public/cpp/application/application_impl.h b/mojo/public/cpp/application/application_impl.h
index 6fba0dd19ef4ac1b7bd8a7d8a80e2f1df0f6a932..b0840063d8d7075f1d0be0fcee06ac892cdfed7c 100644
--- a/mojo/public/cpp/application/application_impl.h
+++ b/mojo/public/cpp/application/application_impl.h
@@ -59,9 +59,9 @@ class ApplicationImpl : public Application {
// Creates a new |ApplicationConnector|. The result can be bound to an
// |ApplicationConnectorPtr| and used to connect to other applications. (It
- // returns an |InterfacePtrInfo| instead of an |InterfacePtr| to facilitate
+ // returns an |InterfaceHandle| instead of an |InterfacePtr| to facilitate
// passing it to another thread.)
- InterfacePtrInfo<ApplicationConnector> CreateApplicationConnector();
+ InterfaceHandle<ApplicationConnector> CreateApplicationConnector();
// Requests a new connection to an application. Returns a pointer to the
// connection if the connection is permitted by this application's delegate,

Powered by Google App Engine
This is Rietveld 408576698