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

Unified Diff: media/capture/video/chromeos/mojo/arc_camera3_service.mojom

Issue 2878233002: media: add ArcCamera3Service Mojo service (Closed)
Patch Set: Created 3 years, 7 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: media/capture/video/chromeos/mojo/arc_camera3_service.mojom
diff --git a/media/capture/video/chromeos/mojo/arc_camera3_service.mojom b/media/capture/video/chromeos/mojo/arc_camera3_service.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..f03842c5c1976b557481f9b1d91ee20098ed8909
--- /dev/null
+++ b/media/capture/video/chromeos/mojo/arc_camera3_service.mojom
@@ -0,0 +1,21 @@
+// 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.
+
+module arc.mojom;
+
+import "arc_camera3.mojom";
+
+interface ArcCamera3Service {
+ RegisterCameraHal@0(ArcCamera3Hal camera_hal);
+
+ RegisterClient@1(ArcCamera3Client client);
+};
+
+interface ArcCamera3Hal {
+ OpenCameraHal@0() => (CameraModule camera_module);
+};
+
+interface ArcCamera3Client {
+ NotifyCameraHalRegistered@0(CameraModule camera_module);
+};

Powered by Google App Engine
This is Rietveld 408576698