| Index: third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.idl
|
| diff --git a/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.idl b/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.idl
|
| index fd974936df63c3e1bba1b2d50436e7f9c0155ff9..fb0e80288d6a53b8e993b4d3caf1a64ff0ff51c8 100644
|
| --- a/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.idl
|
| +++ b/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.idl
|
| @@ -11,19 +11,23 @@ enum MeteringMode {
|
| "continuous",
|
| };
|
|
|
| +enum RedEyeReduction {
|
| + "never",
|
| + "always",
|
| + "controllable",
|
| +};
|
| +
|
| enum FillLightMode {
|
| - "none",
|
| "off",
|
| "auto",
|
| "flash",
|
| - "torch",
|
| };
|
|
|
| [
|
| OriginTrialEnabled=ImageCapture,
|
| ] interface PhotoCapabilities {
|
| - readonly attribute MediaSettingsRange imageHeight;
|
| - readonly attribute MediaSettingsRange imageWidth;
|
| - readonly attribute FillLightMode fillLightMode;
|
| - readonly attribute boolean redEyeReduction;
|
| + readonly attribute RedEyeReduction redEyeReduction;
|
| + readonly attribute MediaSettingsRange imageHeight;
|
| + readonly attribute MediaSettingsRange imageWidth;
|
| + readonly attribute FrozenArray<FillLightMode> fillLightMode;
|
| };
|
|
|