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

Unified Diff: examples/ui/noodles/noodles_view.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: examples/ui/noodles/noodles_view.cc
diff --git a/examples/ui/noodles/noodles_view.cc b/examples/ui/noodles/noodles_view.cc
index 5fa00f2126da5c8b4442c38f0ccd6bca50dcb284..e48ef79cb5d366284681761e8828f5bb819ca661 100644
--- a/examples/ui/noodles/noodles_view.cc
+++ b/examples/ui/noodles/noodles_view.cc
@@ -168,8 +168,8 @@ NoodlesView::RasterizerDelegate::RasterizerDelegate(
NoodlesView::RasterizerDelegate::~RasterizerDelegate() {}
void NoodlesView::RasterizerDelegate::CreateRasterizer(
- mojo::InterfacePtrInfo<mojo::ApplicationConnector> connector_info,
- mojo::InterfacePtrInfo<mojo::gfx::composition::Scene> scene_info) {
+ mojo::InterfaceHandle<mojo::ApplicationConnector> connector_info,
+ mojo::InterfaceHandle<mojo::gfx::composition::Scene> scene_info) {
rasterizer_.reset(
new Rasterizer(mojo::MakeProxy(connector_info.Pass()).Pass(),
mojo::MakeProxy(scene_info.Pass()).Pass()));

Powered by Google App Engine
This is Rietveld 408576698