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

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

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 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/shell/public/java/src/org/chromium/mojo/application/ApplicationConnection.java
diff --git a/mojo/shell/public/java/src/org/chromium/mojo/application/ApplicationConnection.java b/mojo/shell/public/java/src/org/chromium/mojo/application/ApplicationConnection.java
deleted file mode 100644
index 6b0e5487d2bc51bafbde9926d57143368034ee05..0000000000000000000000000000000000000000
--- a/mojo/shell/public/java/src/org/chromium/mojo/application/ApplicationConnection.java
+++ /dev/null
@@ -1,107 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.mojo.application;
-
-import org.chromium.mojo.bindings.Interface;
-import org.chromium.mojo.system.MessagePipeHandle;
-import org.chromium.mojo.system.MojoException;
-import org.chromium.mojom.mojo.ServiceProvider;
-
-import java.io.Closeable;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * Represents a connection to another application.
- */
-public class ApplicationConnection implements Closeable {
- private final String mConnectionUrl;
- private final ServiceProvider mExposedServices;
- private final String mRequestorUrl;
- private final ServiceProviderImpl mServiceProviderImpl;
-
- /**
- * @param requestorUrl URL of the application requesting this connection.
- * @param exposedServices ServiceProvider for services exposed by the remote application.
- */
- public ApplicationConnection(
- String requestorUrl, ServiceProvider exposedServices, String connectionUrl) {
- mRequestorUrl = requestorUrl;
- mExposedServices = exposedServices;
- mConnectionUrl = connectionUrl;
- mServiceProviderImpl = new ServiceProviderImpl();
- }
-
- /**
- * @return URL of the application requesting this connection.
- */
- public String getRequestorUrl() {
- return mRequestorUrl;
- }
-
- /**
- * @return URL that was used by the source application to establish this connection.
- */
- public String connectionUrl() {
- return mConnectionUrl;
- }
-
- /**
- * @return ServiceProvider for services exposed by the remote application.
- */
- public ServiceProvider getRemoteServiceProvider() {
- return mExposedServices;
- }
-
- /**
- * Add a new service for this application.
- *
- * @param binder Handle to a ServiceFactoryBinder which contains a service implementation.
- */
- public void addService(ServiceFactoryBinder<? extends Interface> binder) {
- mServiceProviderImpl.addService(binder);
- }
-
- /**
- * @return ServiceProvider for this application.
- */
- public ServiceProvider getLocalServiceProvider() {
- return mServiceProviderImpl;
- }
-
- @Override
- public void close() {
- mServiceProviderImpl.close();
- if (mExposedServices != null) {
- mExposedServices.close();
- }
- }
-}
-
-class ServiceProviderImpl implements ServiceProvider {
- private final Map<String, ServiceFactoryBinder<? extends Interface>> mNameToServiceMap =
- new HashMap<String, ServiceFactoryBinder<? extends Interface>>();
-
- ServiceProviderImpl() {}
-
- public void addService(ServiceFactoryBinder<? extends Interface> binder) {
- mNameToServiceMap.put(binder.getInterfaceName(), binder);
- }
-
- @Override
- public void connectToService(String interfaceName, MessagePipeHandle pipe) {
- if (mNameToServiceMap.containsKey(interfaceName)) {
- mNameToServiceMap.get(interfaceName).bindNewInstanceToMessagePipe(pipe);
- } else {
- pipe.close();
- }
- }
-
- @Override
- public void close() {}
-
- @Override
- public void onConnectionError(MojoException e) {}
-}
« no previous file with comments | « mojo/shell/public/java/BUILD.gn ('k') | mojo/shell/public/java/src/org/chromium/mojo/application/ApplicationDelegate.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698