| 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);
|
| +};
|
|
|