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

Unified Diff: mojo/dart/embedder/mojo_dart_state.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/dart/embedder/mojo_dart_state.h
diff --git a/mojo/dart/embedder/mojo_dart_state.h b/mojo/dart/embedder/mojo_dart_state.h
index 74badfde9186e56f88351c52de897c6f3d706374..4e29d6c8e4c0225592eca13415568addad5b3cd2 100644
--- a/mojo/dart/embedder/mojo_dart_state.h
+++ b/mojo/dart/embedder/mojo_dart_state.h
@@ -66,8 +66,8 @@ class MojoDartState : public tonic::DartState {
DCHECK(!network_service_.is_bound());
MessagePipeHandle handle(raw_handle);
ScopedMessagePipeHandle message_pipe(handle);
- InterfacePtrInfo<mojo::NetworkService> interface_info(message_pipe.Pass(),
- 0);
+ InterfaceHandle<mojo::NetworkService> interface_info(message_pipe.Pass(),
+ 0);
network_service_.Bind(interface_info.Pass());
DCHECK(network_service_.is_bound());
}

Powered by Google App Engine
This is Rietveld 408576698