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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 bool getRedEyeReduction() const; |
| 65 int getMinColorTemperature() const; |
| 66 int getMaxColorTemperature() const; |
| 67 int getCurrentColorTemperature() const; |
65 | 68 |
66 private: | 69 private: |
67 const base::android::ScopedJavaLocalRef<jobject> object_; | 70 const base::android::ScopedJavaLocalRef<jobject> object_; |
68 }; | 71 }; |
69 | 72 |
70 } // namespace media | 73 } // namespace media |
71 | 74 |
72 #endif // MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_ | 75 #endif // MEDIA_CAPTURE_VIDEO_ANDROID_PHOTO_CAPABILITIES_H_ |
OLD | NEW |