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

Side by Side Diff: media/capture/video/android/photo_capabilities.h

Issue 2301043006: Image Capture: wire RedEyeReduction getter (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_ 5 #ifndef MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_
6 #define MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_ 6 #define MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 #include <string> 9 #include <string>
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 int getMinZoom() const; 54 int getMinZoom() const;
55 int getMaxZoom() const; 55 int getMaxZoom() const;
56 int getCurrentZoom() const; 56 int getCurrentZoom() const;
57 AndroidMeteringMode getFocusMode() const; 57 AndroidMeteringMode getFocusMode() const;
58 AndroidMeteringMode getExposureMode() const; 58 AndroidMeteringMode getExposureMode() const;
59 int getMinExposureCompensation() const; 59 int getMinExposureCompensation() const;
60 int getMaxExposureCompensation() const; 60 int getMaxExposureCompensation() const;
61 int getCurrentExposureCompensation() const; 61 int getCurrentExposureCompensation() const;
62 AndroidMeteringMode getWhiteBalanceMode() const; 62 AndroidMeteringMode getWhiteBalanceMode() const;
63 AndroidFillLightMode getFillLightMode() const; 63 AndroidFillLightMode getFillLightMode() const;
64 bool getRedEyeReduction() const;
64 65
65 private: 66 private:
66 const base::android::ScopedJavaLocalRef<jobject> object_; 67 const base::android::ScopedJavaLocalRef<jobject> object_;
67 }; 68 };
68 69
69 } // namespace media 70 } // namespace media
70 71
71 #endif // MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_ 72 #endif // MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698