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

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

Issue 943053003: Simple multi-url support for mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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: mojo/public/cpp/application/lib/application_impl.cc
diff --git a/mojo/public/cpp/application/lib/application_impl.cc b/mojo/public/cpp/application/lib/application_impl.cc
index 022b2e7a8a86d9165e71067ede2d04e8131cb301..7e0ab7544f6e2f1985e0cb59937d008c6c9d20c6 100644
--- a/mojo/public/cpp/application/lib/application_impl.cc
+++ b/mojo/public/cpp/application/lib/application_impl.cc
@@ -97,7 +97,8 @@ void ApplicationImpl::UnbindConnections(
void ApplicationImpl::AcceptConnection(
const String& requestor_url,
InterfaceRequest<ServiceProvider> services,
- ServiceProviderPtr exposed_services) {
+ ServiceProviderPtr exposed_services,
+ const String& url) {
internal::ServiceRegistry* registry = new internal::ServiceRegistry(
this, requestor_url, exposed_services.Pass(), services.Pass());
if (!delegate_->ConfigureIncomingConnection(registry)) {

Powered by Google App Engine
This is Rietveld 408576698