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

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

Issue 2482983002: MediaSettingsRange: s/long/double/ in MediaSettingsRange.idl and PhotoCapabilities.idl (Closed)
Patch Set: s/float/double/ in fake_video_capture_device.* Created 4 years, 1 month 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
Index: third_party/WebKit/Source/modules/imagecapture/MediaSettingsRange.idl
diff --git a/third_party/WebKit/Source/modules/imagecapture/MediaSettingsRange.idl b/third_party/WebKit/Source/modules/imagecapture/MediaSettingsRange.idl
index 48ca747428ae546afd0551d4795b7944ce4d8330..e132fef7f7d616ed29916078dae305a85a2a5a74 100644
--- a/third_party/WebKit/Source/modules/imagecapture/MediaSettingsRange.idl
+++ b/third_party/WebKit/Source/modules/imagecapture/MediaSettingsRange.idl
@@ -7,8 +7,8 @@
[
RuntimeEnabled=ImageCapture,
] interface MediaSettingsRange {
- readonly attribute long max;
- readonly attribute long min;
- readonly attribute long current;
- readonly attribute long step;
+ readonly attribute double max;
+ readonly attribute double min;
+ readonly attribute double current;
+ readonly attribute double step;
};

Powered by Google App Engine
This is Rietveld 408576698