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

Unified Diff: media/capture/video/android/java/src/org/chromium/media/VideoCapture.java

Issue 2385833002: Image Capture Android: wire color temperature set/get (Closed)
Patch Set: reillyg@s comments 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: media/capture/video/android/java/src/org/chromium/media/VideoCapture.java
diff --git a/media/capture/video/android/java/src/org/chromium/media/VideoCapture.java b/media/capture/video/android/java/src/org/chromium/media/VideoCapture.java
index 667be5dace26527517429dbcb6869d9137419ab1..ffbe0d8d670e152323ea407b4a37487e6cf8ecc9 100644
--- a/media/capture/video/android/java/src/org/chromium/media/VideoCapture.java
+++ b/media/capture/video/android/java/src/org/chromium/media/VideoCapture.java
@@ -68,12 +68,14 @@ public abstract class VideoCapture {
* @param hasRedEyeReduction Indicates if |redEyeReduction| is set.
* @param redEyeReduction Value of red eye reduction for the auto flash setting.
* @param fillLightMode Flash/Torch setting, following AndroidFillLightMode enum.
+ * @param colorTemperature White Balance reference temperature, valid if whiteBalanceMode is
+ * manual, and its value is larger than 0.
*/
@CalledByNative
public abstract void setPhotoOptions(int zoom, int focusMode, int exposureMode, int width,
int height, float[] pointsOfInterest2D, boolean hasExposureCompensation,
int exposureCompensation, int whiteBalanceMode, int iso, boolean hasRedEyeReduction,
- boolean redEyeReduction, int fillLightMode);
+ boolean redEyeReduction, int fillLightMode, int colorTemperature);
@CalledByNative
public abstract boolean takePhoto(final long callbackId);

Powered by Google App Engine
This is Rietveld 408576698