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

Unified Diff: third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.idl

Issue 2785503003: Image Capture: update PhotoCapabilities.idl to latest Spec changes (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698