mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
34 lines
1.6 KiB
Plaintext
34 lines
1.6 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
interface CameraCapabilities
|
|
{
|
|
[Constant, Cached] readonly attribute sequence<CameraSize> previewSizes;
|
|
[Constant, Cached] readonly attribute sequence<CameraSize> pictureSizes;
|
|
[Constant, Cached] readonly attribute sequence<CameraSize> thumbnailSizes;
|
|
[Constant, Cached] readonly attribute sequence<CameraSize> videoSizes;
|
|
|
|
[Constant, Cached] readonly attribute sequence<DOMString> fileFormats;
|
|
|
|
[Constant, Cached] readonly attribute sequence<DOMString> whiteBalanceModes;
|
|
[Constant, Cached] readonly attribute sequence<DOMString> sceneModes;
|
|
[Constant, Cached] readonly attribute sequence<DOMString> effects;
|
|
[Constant, Cached] readonly attribute sequence<DOMString> flashModes;
|
|
[Constant, Cached] readonly attribute sequence<DOMString> focusModes;
|
|
|
|
[Constant, Cached] readonly attribute sequence<double> zoomRatios;
|
|
|
|
[Constant, Cached] readonly attribute unsigned long maxFocusAreas;
|
|
[Constant, Cached] readonly attribute unsigned long maxMeteringAreas;
|
|
|
|
[Constant, Cached] readonly attribute double minExposureCompensation;
|
|
[Constant, Cached] readonly attribute double maxExposureCompensation;
|
|
[Constant, Cached] readonly attribute double exposureCompensationStep;
|
|
|
|
[Constant, Cached] readonly attribute any recorderProfiles;
|
|
};
|