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

Unified Diff: third_party/WebKit/Source/modules/shapedetection/FaceDetector.h

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: third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
diff --git a/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h b/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
index 8fcdcd9a428b999748219f48587f07edd6d78d50..a503ae1149b7e1e708dcb7896ff97911ed486c66 100644
--- a/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
+++ b/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
@@ -11,7 +11,7 @@
#include "modules/ModulesExport.h"
#include "modules/canvas2d/CanvasRenderingContext2D.h"
#include "modules/shapedetection/ShapeDetector.h"
-#include "public/platform/modules/shapedetection/facedetection.mojom-blink.h"
+#include "services/shape_detection/public/interfaces/facedetection.mojom-blink.h"
namespace blink {
@@ -36,10 +36,10 @@ class MODULES_EXPORT FaceDetector final : public ShapeDetector,
int imageWidth,
int imageHeight) override;
void onDetectFaces(ScriptPromiseResolver*,
- mojom::blink::FaceDetectionResultPtr);
+ shape_detection::mojom::blink::FaceDetectionResultPtr);
void onFaceServiceConnectionError();
- mojom::blink::FaceDetectionPtr m_faceService;
+ shape_detection::mojom::blink::FaceDetectionPtr m_faceService;
HeapHashSet<Member<ScriptPromiseResolver>> m_faceServiceRequests;
};

Powered by Google App Engine
This is Rietveld 408576698