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

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

Issue 2385833002: Image Capture Android: wire color temperature set/get (Closed)
Patch Set: reillyg@s comments Created 4 years, 2 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698