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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionImpl.java

Issue 2620083002: Shape Detection: Move mojom interface to //services (Closed)
Patch Set: Created 3 years, 11 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: content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionImpl.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionImpl.java b/content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionImpl.java
index cfe1a69c9b12e31b09430613e77fe4bef2f66a5c..17ff5506fbb5d171d838b16d1d25147d0d52b0c0 100644
--- a/content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionImpl.java
+++ b/content/public/android/java/src/org/chromium/content/browser/shapedetection/FaceDetectionImpl.java
@@ -10,19 +10,19 @@ import android.media.FaceDetector;
import android.media.FaceDetector.Face;
import org.chromium.base.Log;
-import org.chromium.blink.mojom.FaceDetection;
-import org.chromium.blink.mojom.FaceDetectionResult;
-import org.chromium.blink.mojom.FaceDetectorOptions;
import org.chromium.gfx.mojom.RectF;
import org.chromium.mojo.system.MojoException;
import org.chromium.mojo.system.SharedBufferHandle;
import org.chromium.mojo.system.SharedBufferHandle.MapFlags;
+import org.chromium.shape_detection.mojom.FaceDetection;
+import org.chromium.shape_detection.mojom.FaceDetectionResult;
+import org.chromium.shape_detection.mojom.FaceDetectorOptions;
import java.nio.ByteBuffer;
/**
* Android implementation of the FaceDetection service defined in
- * third_party/WebKit/public/platform/modules/FaceDetection/FaceDetection.mojom
+ * services/shape_detection/public/interfaces/facedetection.mojom
*/
public class FaceDetectionImpl implements FaceDetection {
private static final String TAG = "FaceDetectionImpl";

Powered by Google App Engine
This is Rietveld 408576698