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

Unified Diff: third_party/WebKit/LayoutTests/imagecapture/resources/mock-imagecapture.js

Issue 2387303002: Image Capture Linux/CrOs, implement brightness, contrast, saturation and sharpness (Closed)
Patch Set: Explicitly initialize to empty the new fields in the Android implementation and rebase Created 4 years, 2 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
Index: third_party/WebKit/LayoutTests/imagecapture/resources/mock-imagecapture.js
diff --git a/third_party/WebKit/LayoutTests/imagecapture/resources/mock-imagecapture.js b/third_party/WebKit/LayoutTests/imagecapture/resources/mock-imagecapture.js
index 6eec66d66960ad397358b990544d37ea6687cff1..fcaadba18820422263ad8db9b3381a28222e44b3 100644
--- a/third_party/WebKit/LayoutTests/imagecapture/resources/mock-imagecapture.js
+++ b/third_party/WebKit/LayoutTests/imagecapture/resources/mock-imagecapture.js
@@ -27,6 +27,10 @@ let mockImageCaptureReady = define(
fill_light_mode : imageCapture.FillLightMode.AUTO,
red_eye_reduction : true,
color_temperature : { min : 2500, max : 6500, current : 6000 },
+ brightness : { min : 1, max : 10, current : 5 },
+ contrast : { min : 2, max : 9, current : 5 },
+ saturation : { min : 3, max : 8, current : 6 },
+ sharpness : { min : 4, max : 7, current : 7 },
}};
this.settings_ = null;
}

Powered by Google App Engine
This is Rietveld 408576698