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

Unified Diff: content/child/mojo/mojo_application.cc

Issue 1684783002: Rename ServiceProvider to InterfaceProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 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: content/child/mojo/mojo_application.cc
diff --git a/content/child/mojo/mojo_application.cc b/content/child/mojo/mojo_application.cc
index fd0260d69fabcf44de3cdf9ff9ba4b547f8a1baf..1d344bb3f2f0174277f001c32e51dc994e6b2cb1 100644
--- a/content/child/mojo/mojo_application.cc
+++ b/content/child/mojo/mojo_application.cc
@@ -55,11 +55,11 @@ void MojoApplication::OnMessagePipeCreated(mojo::ScopedMessagePipeHandle pipe) {
application_setup.Bind(
mojo::InterfacePtrInfo<ApplicationSetup>(std::move(pipe), 0u));
- mojo::ServiceProviderPtr services;
- mojo::ServiceProviderPtr exposed_services;
+ mojo::InterfaceProviderPtr services;
+ mojo::InterfaceProviderPtr exposed_services;
service_registry_.Bind(GetProxy(&exposed_services));
- application_setup->ExchangeServiceProviders(GetProxy(&services),
- std::move(exposed_services));
+ application_setup->ExchangeInterfaceProviders(GetProxy(&services),
+ std::move(exposed_services));
service_registry_.BindRemoteServiceProvider(std::move(services));
}
« no previous file with comments | « content/browser/service_worker/embedded_worker_test_helper.cc ('k') | content/common/application_setup.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698