aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWei-Ta Chen <weita@google.com>2010-09-22 23:09:42 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-22 23:09:42 -0700
commitbfa4ebfb277423431a6958a7e024d16d95e7f6bc (patch)
tree69d6f23a24d9fc8ddf9aebaee842f3fc24ecca34 /include
parent4ab44089c879dbd9a23d8ca567d77e34763d41b2 (diff)
parent2626a12394e8b284ff7d88e0ec0e99beaa31b795 (diff)
downloadexternal_skia-bfa4ebfb277423431a6958a7e024d16d95e7f6bc.zip
external_skia-bfa4ebfb277423431a6958a7e024d16d95e7f6bc.tar.gz
external_skia-bfa4ebfb277423431a6958a7e024d16d95e7f6bc.tar.bz2
am 2626a123: am c408f5a2: Merge "Rename SkLargeBitmap to SkBitmapRegionDecoder (the previous renaming was reverted)." into gingerbread
Merge commit '2626a12394e8b284ff7d88e0ec0e99beaa31b795' * commit '2626a12394e8b284ff7d88e0ec0e99beaa31b795': Rename SkLargeBitmap to SkBitmapRegionDecoder (the previous renaming was reverted).
Diffstat (limited to 'include')
-rw-r--r--include/images/SkBitmapRegionDecoder.h (renamed from include/images/SkLargeBitmap.h)10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/images/SkLargeBitmap.h b/include/images/SkBitmapRegionDecoder.h
index 0d19f32..5b35371 100644
--- a/include/images/SkLargeBitmap.h
+++ b/include/images/SkBitmapRegionDecoder.h
@@ -1,18 +1,18 @@
-#ifndef SkLargeBitmap_DEFINED
-#define SkLargeBitmap_DEFINED
+#ifndef SkBitmapRegionDecoder_DEFINED
+#define SkBitmapRegionDecoder_DEFINED
#include "SkBitmap.h"
#include "SkRect.h"
#include "SkImageDecoder.h"
-class SkLargeBitmap {
+class SkBitmapRegionDecoder {
public:
- SkLargeBitmap(SkImageDecoder *decoder, int width, int height) {
+ SkBitmapRegionDecoder(SkImageDecoder *decoder, int width, int height) {
fDecoder = decoder;
fWidth = width;
fHeight = height;
}
- virtual ~SkLargeBitmap() {
+ virtual ~SkBitmapRegionDecoder() {
delete fDecoder;
}