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

Unified Diff: mojo/public/cpp/application/lib/application_impl_base.cc

Issue 2034383003: Removed exposed_services from mojom definitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
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: mojo/public/cpp/application/lib/application_impl_base.cc
diff --git a/mojo/public/cpp/application/lib/application_impl_base.cc b/mojo/public/cpp/application/lib/application_impl_base.cc
index 1bc19fcad7fc0dde27444235a3ba198d2b5a7ca0..5aaf5bb3d295d33b4172ddaa27bc457865670fb7 100644
--- a/mojo/public/cpp/application/lib/application_impl_base.cc
+++ b/mojo/public/cpp/application/lib/application_impl_base.cc
@@ -58,14 +58,8 @@ void ApplicationImplBase::Initialize(InterfaceHandle<Shell> shell,
void ApplicationImplBase::AcceptConnection(
const String& requestor_url,
- InterfaceRequest<ServiceProvider> services,
- InterfaceHandle<ServiceProvider> exposed_services,
- const String& url) {
- // Note: The shell no longer actually connects |exposed_services|, so a) we
- // never actually get valid |exposed_services| here, b) it should be OK to
- // drop it on the floor.
- MOJO_LOG_IF(ERROR, exposed_services)
- << "DEPRECATED: exposed_services is going away";
+ const String& url,
+ InterfaceRequest<ServiceProvider> services) {
std::unique_ptr<ServiceProviderImpl> service_provider_impl(
new ServiceProviderImpl(
ConnectionContext(ConnectionContext::Type::INCOMING, requestor_url,
« no previous file with comments | « mojo/public/cpp/application/connection_context.h ('k') | mojo/public/cpp/application/lib/application_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698