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

Unified Diff: content/browser/shapedetection/face_detection_service_dispatcher.h

Issue 2528743002: Shape Detection: Implement FaceDetection on Mac as out-of-process service (Closed)
Patch Set: Launch shape detection service as a utility process 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/browser/shapedetection/face_detection_service_dispatcher.h
diff --git a/content/browser/shapedetection/face_detection_service_dispatcher.h b/content/browser/shapedetection/face_detection_service_dispatcher.h
new file mode 100644
index 0000000000000000000000000000000000000000..12b576a0947f8afaf385a3e33456b243b10bd100
--- /dev/null
+++ b/content/browser/shapedetection/face_detection_service_dispatcher.h
@@ -0,0 +1,30 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_SHAPEDETECTION_FACE_DETECTION_SERVICE_DISPATCHER_H_
+#define CONTENT_BROWSER_SHAPEDETECTION_FACE_DETECTION_SERVICE_DISPATCHER_H_
+
+#include "content/common/content_export.h"
+#include "services/shape_detection/public/interfaces/facedetection_provider.mojom.h"
+
+namespace content {
+
+class RenderFrameHost;
+
+// Because the renderer cannot launch an out-of-process service on its own, we
+// use |FaceDetectionServiceDispatcher| to forward requests to Service Manager,
+// which then starts Face Detection Service in a utility process.
+class CONTENT_EXPORT FaceDetectionServiceDispatcher {
+ public:
+ FaceDetectionServiceDispatcher();
+ ~FaceDetectionServiceDispatcher();
+
+ static void CreateMojoService(
+ RenderFrameHost* render_frame_host,
+ shape_detection::mojom::FaceDetectionProviderRequest request);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_SHAPEDETECTION_FACE_DETECTION_SERVICE_DISPATCHER_H_

Powered by Google App Engine
This is Rietveld 408576698