diff options
author | Wu-cheng Li <wuchengli@google.com> | 2010-01-25 15:18:18 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2010-01-25 15:20:23 +0800 |
commit | 88eeff5270991df178ee09ffda7ce5076c9a1e59 (patch) | |
tree | 00b0f5754d265cd28d73a02e0da7eec83aebfd1b /include/ui | |
parent | 703111327eac2f3228de1f165d23fa3bf86120ba (diff) | |
download | frameworks_native-88eeff5270991df178ee09ffda7ce5076c9a1e59.zip frameworks_native-88eeff5270991df178ee09ffda7ce5076c9a1e59.tar.gz frameworks_native-88eeff5270991df178ee09ffda7ce5076c9a1e59.tar.bz2 |
Change key to KEY_SUPPORTED_JPEG_THUMBNAIL_SIZES for consistency.
bug:2375986
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/CameraParameters.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/ui/CameraParameters.h b/include/ui/CameraParameters.h index 9e4e140..a5ea133 100644 --- a/include/ui/CameraParameters.h +++ b/include/ui/CameraParameters.h @@ -109,9 +109,10 @@ public: // The height (in pixels) of EXIF thumbnail in Jpeg picture. // Example value: "384". Read/write. static const char KEY_JPEG_THUMBNAIL_HEIGHT[]; - // Supported EXIF thumbnail sizes (width x height). - // Example value: "512x384,320x240". Read only. - static const char KEY_SUPPORTED_THUMBNAIL_SIZES[]; + // Supported EXIF thumbnail sizes (width x height). 0x0 means not thumbnail + // in EXIF. + // Example value: "512x384,320x240,0x0". Read only. + static const char KEY_SUPPORTED_JPEG_THUMBNAIL_SIZES[]; // The quality of the EXIF thumbnail in Jpeg picture. The range is 1 to 100, // with 100 being the best. // Example value: "90". Read/write. |