| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |