| Index: content/public/android/java/src/org/chromium/content/browser/InterfaceRegistrarImpl.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/InterfaceRegistrarImpl.java b/content/public/android/java/src/org/chromium/content/browser/InterfaceRegistrarImpl.java
|
| index 680c9426ba2828f7f4abfbc456d50f29b079d91a..bdc90185ac7ff45cb31a3fcd0a191dbaa869689b 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/InterfaceRegistrarImpl.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/InterfaceRegistrarImpl.java
|
| @@ -8,7 +8,7 @@ import android.content.Context;
|
|
|
| import org.chromium.base.annotations.CalledByNative;
|
| import org.chromium.base.annotations.JNINamespace;
|
| -import org.chromium.content.browser.shapedetection.FaceDetectionProviderFactory;
|
| +import org.chromium.content.browser.shapedetection.FaceDetectionProviderImpl;
|
| import org.chromium.content_public.browser.InterfaceRegistrar;
|
| import org.chromium.content_public.browser.WebContents;
|
| import org.chromium.device.BatteryMonitor;
|
| @@ -59,7 +59,7 @@ class ContentContextInterfaceRegistrar implements InterfaceRegistrar<Context> {
|
| registry.addInterface(
|
| BatteryMonitor.MANAGER, new BatteryMonitorFactory(applicationContext));
|
| registry.addInterface(FaceDetectionProvider.MANAGER,
|
| - new FaceDetectionProviderFactory(applicationContext));
|
| + new FaceDetectionProviderImpl.Factory(applicationContext));
|
| // TODO(avayvod): Register the PresentationService implementation here.
|
| }
|
| }
|
|
|