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

Unified Diff: services/nacl/nonsfi/content_handler_main_pexe.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: services/nacl/nonsfi/content_handler_main_pexe.cc
diff --git a/services/nacl/nonsfi/content_handler_main_pexe.cc b/services/nacl/nonsfi/content_handler_main_pexe.cc
index 75425703a8db083fbc6214cbac88cd310d6b1214..b4821f0b6ca7423146501e81ba3c805a9c5d7d45 100644
--- a/services/nacl/nonsfi/content_handler_main_pexe.cc
+++ b/services/nacl/nonsfi/content_handler_main_pexe.cc
@@ -28,8 +28,8 @@ namespace {
class CompilerUI {
public:
explicit CompilerUI(mojo::ScopedMessagePipeHandle handle) {
- compiler_.Bind(mojo::InterfacePtrInfo<mojo::nacl::PexeCompiler>(
- handle.Pass(), 0u));
+ compiler_.Bind(
+ mojo::InterfaceHandle<mojo::nacl::PexeCompiler>(handle.Pass(), 0u));
}
// Synchronous method to compile pexe into object file.
@@ -50,8 +50,8 @@ class CompilerUI {
class LinkerUI {
public:
explicit LinkerUI(mojo::ScopedMessagePipeHandle handle) {
- linker_.Bind(mojo::InterfacePtrInfo<mojo::nacl::PexeLinker>(
- handle.Pass(), 0u));
+ linker_.Bind(
+ mojo::InterfaceHandle<mojo::nacl::PexeLinker>(handle.Pass(), 0u));
}
// Synchronous method to link object file into nexe.

Powered by Google App Engine
This is Rietveld 408576698