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

Unified Diff: media/capture/video/android/photo_capabilities.h

Issue 2164473002: ImageCapture: wire PhotoCapabilities' ISO, width, height and PhotoSettings' width and height (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dcheng@ comments Created 4 years, 5 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/photo_capabilities.h
diff --git a/media/capture/video/android/photo_capabilities.h b/media/capture/video/android/photo_capabilities.h
index 8f1a0b81fb023dc9bd56ce2f8c71bc85b835066c..c154b487d4094c1a53565c4cd39e5ffaf48001e9 100644
--- a/media/capture/video/android/photo_capabilities.h
+++ b/media/capture/video/android/photo_capabilities.h
@@ -19,6 +19,15 @@ class PhotoCapabilities {
static bool RegisterPhotoCapabilities(JNIEnv* env);
+ int getMinIso() const;
+ int getMaxIso() const;
+ int getCurrentIso() const;
+ int getMinHeight() const;
+ int getMaxHeight() const;
+ int getCurrentHeight() const;
+ int getMinWidth() const;
+ int getMaxWidth() const;
+ int getCurrentWidth() const;
int getMinZoom() const;
int getMaxZoom() const;
int getCurrentZoom() const;

Powered by Google App Engine
This is Rietveld 408576698