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/shell/public/cpp/lib/connection_impl.cc

Issue 2079943002: Change RenderFrame to use InterfaceRegistry et al. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a2
Patch Set: . Created 4 years, 6 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/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_;
}
« no previous file with comments | « services/shell/public/cpp/lib/connection_impl.h ('k') | services/shell/public/cpp/lib/interface_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698