| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 int getCurrentIso() const; | 47 int getCurrentIso() const; |
| 48 int getStepIso() const; | 48 int getStepIso() const; |
| 49 int getMinHeight() const; | 49 int getMinHeight() const; |
| 50 int getMaxHeight() const; | 50 int getMaxHeight() const; |
| 51 int getCurrentHeight() const; | 51 int getCurrentHeight() const; |
| 52 int getStepHeight() const; | 52 int getStepHeight() const; |
| 53 int getMinWidth() const; | 53 int getMinWidth() const; |
| 54 int getMaxWidth() const; | 54 int getMaxWidth() const; |
| 55 int getCurrentWidth() const; | 55 int getCurrentWidth() const; |
| 56 int getStepWidth() const; | 56 int getStepWidth() const; |
| 57 int getMinZoom() const; | 57 double getMinZoom() const; |
| 58 int getMaxZoom() const; | 58 double getMaxZoom() const; |
| 59 int getCurrentZoom() const; | 59 double getCurrentZoom() const; |
| 60 int getStepZoom() const; | 60 double getStepZoom() const; |
| 61 AndroidMeteringMode getFocusMode() const; | 61 AndroidMeteringMode getFocusMode() const; |
| 62 AndroidMeteringMode getExposureMode() const; | 62 AndroidMeteringMode getExposureMode() const; |
| 63 int getMinExposureCompensation() const; | 63 double getMinExposureCompensation() const; |
| 64 int getMaxExposureCompensation() const; | 64 double getMaxExposureCompensation() const; |
| 65 int getCurrentExposureCompensation() const; | 65 double getCurrentExposureCompensation() const; |
| 66 int getStepExposureCompensation() const; | 66 double getStepExposureCompensation() const; |
| 67 AndroidMeteringMode getWhiteBalanceMode() const; | 67 AndroidMeteringMode getWhiteBalanceMode() const; |
| 68 AndroidFillLightMode getFillLightMode() const; | 68 AndroidFillLightMode getFillLightMode() const; |
| 69 bool getRedEyeReduction() const; | 69 bool getRedEyeReduction() const; |
| 70 int getMinColorTemperature() const; | 70 int getMinColorTemperature() const; |
| 71 int getMaxColorTemperature() const; | 71 int getMaxColorTemperature() const; |
| 72 int getCurrentColorTemperature() const; | 72 int getCurrentColorTemperature() const; |
| 73 int getStepColorTemperature() const; | 73 int getStepColorTemperature() const; |
| 74 | 74 |
| 75 private: | 75 private: |
| 76 const base::android::ScopedJavaLocalRef<jobject> object_; | 76 const base::android::ScopedJavaLocalRef<jobject> object_; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace media | 79 } // namespace media |
| 80 | 80 |
| 81 #endif // MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_ | 81 #endif // MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_ |
| OLD | NEW |