summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wei <markwei@google.com>2013-10-22 06:07:35 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-10-22 06:07:36 +0000
commit549bb653b1ec516c905ebeed5d27104e8b11b537 (patch)
tree8eb10d1f37eb03daac23b309b6399bf57b9a86a6
parent912c58d2615936c63d235cb21db9315ddc8a81ab (diff)
parentf433893b66efbec10367567fba2ade0bda507b15 (diff)
downloadbitmap-549bb653b1ec516c905ebeed5d27104e8b11b537.tar.gz
Merge "Change visibility of mBitmap to protected for BasicBitmapDrawable subclasses." into klp-ub-dev
-rw-r--r--src/com/android/bitmap/drawable/BasicBitmapDrawable.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/bitmap/drawable/BasicBitmapDrawable.java b/src/com/android/bitmap/drawable/BasicBitmapDrawable.java
index a32e38c..b6a148f 100644
--- a/src/com/android/bitmap/drawable/BasicBitmapDrawable.java
+++ b/src/com/android/bitmap/drawable/BasicBitmapDrawable.java
@@ -50,7 +50,7 @@ public class BasicBitmapDrawable extends Drawable implements DecodeTask.DecodeCa
Drawable.Callback {
protected RequestKey mCurrKey;
- private ReusableBitmap mBitmap;
+ protected ReusableBitmap mBitmap;
private final BitmapCache mCache;
private final boolean mLimitDensity;
private DecodeTask mTask;