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

Unified Diff: examples/indirect_service/indirect_service_demo.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/indirect_service/indirect_service_demo.cc
diff --git a/examples/indirect_service/indirect_service_demo.cc b/examples/indirect_service/indirect_service_demo.cc
index 85c139180550eb8d9a9d9fd1dd661743a7857722..c354ed866e1c6ca0670946d1836a977a66f77e21 100644
--- a/examples/indirect_service/indirect_service_demo.cc
+++ b/examples/indirect_service/indirect_service_demo.cc
@@ -47,7 +47,7 @@ class DemoTask {
void Run() {
integer_service_.Bind(
- InterfacePtrInfo<IntegerService>(proxy_handle_.Pass(), 0u));
+ InterfaceHandle<IntegerService>(proxy_handle_.Pass(), 0u));
base::Callback<void(int32_t)> callback =
base::Bind(&DemoTask::SaveResultAndFinish, base::Unretained(this));
for(int unsigned i = 0; i < iteration_count_; i++) {
« no previous file with comments | « no previous file | examples/ui/noodles/noodles_view.h » ('j') | mojo/public/cpp/bindings/lib/bindings_serialization.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698