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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImplementationFactory.java

Issue 2214383002: Move registration of Java mojo interfaces to the new InterfaceRegistrar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@java-content-interface-registry
Patch Set: Created 4 years, 3 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: chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImplementationFactory.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImplementationFactory.java b/chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImplementationFactory.java
index 749bd0c0412473673cb6167f17e33ee629bbd0bc..0a115244c79d6ec9b8b113e8342a9df5dc428bdf 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImplementationFactory.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImplementationFactory.java
@@ -4,14 +4,14 @@
package org.chromium.chrome.browser.webshare;
-import org.chromium.content.browser.InterfaceRegistry.ImplementationFactory;
import org.chromium.content_public.browser.WebContents;
import org.chromium.mojom.webshare.ShareService;
+import org.chromium.services.shell.InterfaceFactory;
/**
* Factory that creates instances of ShareService.
*/
-public class ShareServiceImplementationFactory implements ImplementationFactory<ShareService> {
+public class ShareServiceImplementationFactory implements InterfaceFactory<ShareService> {
private final WebContents mWebContents;
public ShareServiceImplementationFactory(WebContents webContents) {

Powered by Google App Engine
This is Rietveld 408576698