Index: services/shell/public/cpp/lib/interface_factory_binder.h |
diff --git a/services/shell/public/cpp/lib/interface_factory_binder.h b/services/shell/public/cpp/lib/interface_factory_binder.h |
index bd97a7628257dd8cbcd6b7cea3dd2b11c829e82e..e5ff37be11856e34bb85483f1a7b35edc894ac9e 100644 |
--- a/services/shell/public/cpp/lib/interface_factory_binder.h |
+++ b/services/shell/public/cpp/lib/interface_factory_binder.h |
@@ -21,10 +21,10 @@ class InterfaceFactoryBinder : public InterfaceBinder { |
: factory_(factory) {} |
~InterfaceFactoryBinder() override {} |
- void BindInterface(Connection* connection, |
+ void BindInterface(const Identity& remote_identity, |
const std::string& interface_name, |
mojo::ScopedMessagePipeHandle client_handle) override { |
- factory_->Create(connection, |
+ factory_->Create(remote_identity, |
mojo::MakeRequest<Interface>(std::move(client_handle))); |
} |