| Index: services/shell/public/cpp/lib/connection_impl.cc
|
| diff --git a/services/shell/public/cpp/lib/connection_impl.cc b/services/shell/public/cpp/lib/connection_impl.cc
|
| index 3a612e05fe0b6baf497c077dc90816066b8a783e..d014a4dca565beb5e94583bc76a84d24ed2a4693 100644
|
| --- a/services/shell/public/cpp/lib/connection_impl.cc
|
| +++ b/services/shell/public/cpp/lib/connection_impl.cc
|
| @@ -98,14 +98,14 @@ bool ConnectionImpl::AllowsInterface(const std::string& interface_name) const {
|
| }
|
|
|
| mojom::InterfaceProvider* ConnectionImpl::GetRemoteInterfaceProvider() {
|
| - return remote_interfaces_.GetInterfaceProvider();
|
| + return remote_interfaces_.get();
|
| }
|
|
|
| InterfaceRegistry* ConnectionImpl::GetInterfaceRegistry() {
|
| return &interfaces_;
|
| }
|
|
|
| -RemoteInterfaceRegistry* ConnectionImpl::GetRemoteInterfaceRegistry() {
|
| +InterfaceProvider* ConnectionImpl::GetRemoteInterfaces() {
|
| return &remote_interfaces_;
|
| }
|
|
|
|
|