summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorChet Haase <chet@google.com>2013-09-05 07:44:18 -0700
committerChet Haase <chet@google.com>2013-09-05 08:44:33 -0700
commite8222dddaf2e3da14380101e818d4254899e0c0d (patch)
tree082abae3fd483ef9cf6ea2ee5a9c2ee19363a08a /graphics
parent9e8bdc39bcdfc22d05edd5f4a0ca69cdffec4f34 (diff)
downloadframeworks_base-e8222dddaf2e3da14380101e818d4254899e0c0d.zip
frameworks_base-e8222dddaf2e3da14380101e818d4254899e0c0d.tar.gz
frameworks_base-e8222dddaf2e3da14380101e818d4254899e0c0d.tar.bz2
Change build version from KEY_LIME_PIE to KITKAT
Issue #10631619 Change build version to KitKat Change-Id: I6ad13f6169ad74204078d36929479998b498ad8b
Diffstat (limited to 'graphics')
-rw-r--r--graphics/java/android/graphics/Bitmap.java6
-rw-r--r--graphics/java/android/graphics/BitmapFactory.java4
2 files changed, 5 insertions, 5 deletions
diff --git a/graphics/java/android/graphics/Bitmap.java b/graphics/java/android/graphics/Bitmap.java
index 495bbca..4c7395c 100644
--- a/graphics/java/android/graphics/Bitmap.java
+++ b/graphics/java/android/graphics/Bitmap.java
@@ -420,7 +420,7 @@ public final class Bitmap implements Parcelable {
* It is recommended to use {@link #ARGB_8888} instead of this
* configuration.
*
- * Note: as of {@link android.os.Build.VERSION_CODES#KEY_LIME_PIE},
+ * Note: as of {@link android.os.Build.VERSION_CODES#KITKAT},
* any bitmap created with this configuration will be created
* using {@link #ARGB_8888} instead.
*
@@ -1130,7 +1130,7 @@ public final class Bitmap implements Parcelable {
* getPixels() or setPixels(), then the pixels are uniformly treated as
* 32bit values, packed according to the Color class.
*
- * <p>As of {@link android.os.Build.VERSION_CODES#KEY_LIME_PIE}, this method
+ * <p>As of {@link android.os.Build.VERSION_CODES#KITKAT}, this method
* should not be used to calculate the memory usage of the bitmap. Instead,
* see {@link #getAllocationByteCount()}.
*
@@ -1143,7 +1143,7 @@ public final class Bitmap implements Parcelable {
/**
* Returns the minimum number of bytes that can be used to store this bitmap's pixels.
*
- * <p>As of {@link android.os.Build.VERSION_CODES#KEY_LIME_PIE}, the result of this method can
+ * <p>As of {@link android.os.Build.VERSION_CODES#KITKAT}, the result of this method can
* no longer be used to determine memory usage of a bitmap. See {@link
* #getAllocationByteCount()}.</p>
*/
diff --git a/graphics/java/android/graphics/BitmapFactory.java b/graphics/java/android/graphics/BitmapFactory.java
index 8872de0..4193dbb 100644
--- a/graphics/java/android/graphics/BitmapFactory.java
+++ b/graphics/java/android/graphics/BitmapFactory.java
@@ -56,7 +56,7 @@ public class BitmapFactory {
* mutable even when decoding a resource which would normally result in
* an immutable bitmap.</p>
*
- * <p>As of {@link android.os.Build.VERSION_CODES#KEY_LIME_PIE}, any
+ * <p>As of {@link android.os.Build.VERSION_CODES#KITKAT}, any
* mutable bitmap can be reused to decode any other bitmaps as long as
* the resulting {@link Bitmap#getByteCount() byte count} of the decoded
* bitmap is less than or equal to the {@link
@@ -64,7 +64,7 @@ public class BitmapFactory {
* bitmap. This can be because the intrinsic size is smaller, or its
* size post scaling (for density / sample size) is smaller.</p>
*
- * <p>Prior to {@link android.os.Build.VERSION_CODES#KEY_LIME_PIE}
+ * <p>Prior to {@link android.os.Build.VERSION_CODES#KITKAT}
* additional constraints apply: The image being decoded (whether as a
* resource or as a stream) must be in jpeg or png format. Only equal
* sized bitmaps are supported, with {@link #inSampleSize} set to 1.