blob: 7c6213e5f8ac8184e409e4ce99919bb3a78d5ab4 [file] [log] [blame]
// Copyright 2016 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 video_capture.mojom;
import "mojom/video_capture_types.mojom";
import "mojom/image_capture.mojom";
import "mojom/receiver.mojom";
// Represents access to a video capture device available on the machine.
// The device is stopped automatically when the message pipe corresponding to
// either the Device or the given |receiver| is closed. Note that as a response
// to stopping the device, the service may still need to send out events such as
// Receiver.OnBufferRetired() to |receiver|. The service will send a final event
// Receiver.OnStopped() to indicate that stopping has completed and no further
// events are going to be sent to |receiver|.
interface Device {
Start(media.mojom.VideoCaptureParams requested_settings, Receiver receiver);
MaybeSuspend();
Resume();
GetPhotoState()
=> (media.mojom.PhotoState? capabilities);
SetPhotoOptions(media.mojom.PhotoSettings settings)
=> (bool success);
TakePhoto()
=> (media.mojom.Blob? blob);
};