| Index: content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionFactory.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/shapedetection/ShapeDetectionFactory.java b/content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionFactory.java
|
| similarity index 61%
|
| rename from content/public/android/java/src/org/chromium/content/browser/shapedetection/ShapeDetectionFactory.java
|
| rename to content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionFactory.java
|
| index ef657a4531829e56a417eeb203fbe9eff23df3aa..683df5bccb5f28601c750b09fc4b5c5759662676 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/shapedetection/ShapeDetectionFactory.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionFactory.java
|
| @@ -6,17 +6,17 @@ package org.chromium.content.browser.shapedetection;
|
|
|
| import android.content.Context;
|
|
|
| -import org.chromium.blink.mojom.ShapeDetection;
|
| +import org.chromium.blink.mojom.FaceDetection;
|
| import org.chromium.services.service_manager.InterfaceFactory;
|
|
|
| /**
|
| * A factory method for registry in InterfaceRegistrarImpl.java.
|
| */
|
| -public class ShapeDetectionFactory implements InterfaceFactory<ShapeDetection> {
|
| - public ShapeDetectionFactory(Context context) {}
|
| +public class FaceDetectionFactory implements InterfaceFactory<FaceDetection> {
|
| + public FaceDetectionFactory(Context context) {}
|
|
|
| @Override
|
| - public ShapeDetection createImpl() {
|
| - return new ShapeDetectionImpl();
|
| + public FaceDetection createImpl() {
|
| + return new FaceDetectionImpl();
|
| }
|
| }
|
|
|