| Index: third_party/WebKit/Source/modules/imagecapture/PhotoSettings.idl
|
| diff --git a/third_party/WebKit/Source/modules/imagecapture/PhotoSettings.idl b/third_party/WebKit/Source/modules/imagecapture/PhotoSettings.idl
|
| index a69e6321e05c526894a394f3a09099329c7c8f05..27d93d38f0a4ae93d7e97e2643f28e05698e14d9 100644
|
| --- a/third_party/WebKit/Source/modules/imagecapture/PhotoSettings.idl
|
| +++ b/third_party/WebKit/Source/modules/imagecapture/PhotoSettings.idl
|
| @@ -6,21 +6,20 @@
|
|
|
| dictionary PhotoSettings {
|
| MeteringMode whiteBalanceMode;
|
| - unsigned long colorTemperature;
|
| + double colorTemperature;
|
| MeteringMode exposureMode;
|
| - unsigned long exposureCompensation;
|
| - unsigned long iso;
|
| + double exposureCompensation;
|
| + double iso;
|
| boolean redEyeReduction;
|
| MeteringMode focusMode;
|
| sequence<Point2D> pointsOfInterest;
|
|
|
| -
|
| - unsigned long brightness;
|
| - unsigned long contrast;
|
| - unsigned long saturation;
|
| - unsigned long sharpness;
|
| - unsigned long zoom;
|
| - unsigned long imageHeight;
|
| - unsigned long imageWidth;
|
| + double brightness;
|
| + double contrast;
|
| + double saturation;
|
| + double sharpness;
|
| + double zoom;
|
| + double imageHeight;
|
| + double imageWidth;
|
| FillLightMode fillLightMode;
|
| };
|
|
|