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

Side by Side Diff: content/public/android/java/src/org/chromium/content_public/browser/ServiceRegistryInterface.java

Issue 1867773002: Expose the Java ServiceRegistryInterface in content_public. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-java
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 unified diff | Download patch
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/ServiceRegistry.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.content_public.browser;
6
7 import org.chromium.mojo.bindings.Interface;
8 import org.chromium.mojo.bindings.Interface.Proxy;
9
10 /**
11 * The interface for the Java wrapper over Mojo ServiceRegistry held by the brow ser.
12 */
13 public interface ServiceRegistryInterface {
14 /**
15 * The interface that a factory should implement.
16 */
17 interface ImplementationFactory<I extends Interface> {
18 I createImpl();
19 }
20
21 /**
22 * Adds a service factory.
23 *
24 * @param manager The interface manager.
25 * @param factory The service factory.
26 */
27 <I extends Interface, P extends Proxy> void addService(
28 Interface.Manager<I, P> manager, ImplementationFactory<I> factory);
29 }
OLDNEW
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/ServiceRegistry.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698