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

Unified Diff: mojo/public/java/application/src/org/chromium/mojo/application/ShellHelper.java

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/java/application/src/org/chromium/mojo/application/ShellHelper.java
diff --git a/mojo/public/java/application/src/org/chromium/mojo/application/ShellHelper.java b/mojo/public/java/application/src/org/chromium/mojo/application/ShellHelper.java
index c26b37ba0aaf15417c84cab08f850fc4fb61247c..2abbb826d97aa00d17e13981bafbe4d383eda30f 100644
--- a/mojo/public/java/application/src/org/chromium/mojo/application/ShellHelper.java
+++ b/mojo/public/java/application/src/org/chromium/mojo/application/ShellHelper.java
@@ -31,7 +31,7 @@ public class ShellHelper {
Pair<ServiceProvider.Proxy, InterfaceRequest<ServiceProvider>> providerRequest =
ServiceProvider.MANAGER.getInterfaceRequest(core);
try (ServiceProvider.Proxy provider = providerRequest.first) {
- shell.connectToApplication(application, providerRequest.second, null);
+ shell.connectToApplication(application, providerRequest.second);
Pair<P, InterfaceRequest<I>> serviceRequest = manager.getInterfaceRequest(core);
provider.connectToService(manager.getName(), serviceRequest.second.passHandle());
return serviceRequest.first;

Powered by Google App Engine
This is Rietveld 408576698