Index: mojo/shell/application_manager.cc |
diff --git a/mojo/shell/application_manager.cc b/mojo/shell/application_manager.cc |
index 5d1a9fe3453d4b743c0b2666bbdd1e9d02af9277..2b08442a2d92efac7a72618737ed953281221741 100644 |
--- a/mojo/shell/application_manager.cc |
+++ b/mojo/shell/application_manager.cc |
@@ -45,7 +45,8 @@ class ApplicationManager::ContentHandlerConnection : public ErrorHandler { |
content_handler_url, qualifier, requestor_url, GetProxy(&services), |
nullptr, base::Closure(), std::vector<std::string>()); |
MessagePipe pipe; |
- content_handler_.Bind(pipe.handle0.Pass()); |
+ content_handler_.Bind( |
+ InterfacePtrInfo<ContentHandler>(pipe.handle0.Pass(), 0u)); |
services->ConnectToService(ContentHandler::Name_, pipe.handle1.Pass()); |
content_handler_.set_error_handler(this); |
} |