aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWei-Ta Chen <weita@google.com>2010-09-22 23:01:31 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-09-22 23:01:31 -0700
commitc408f5a2507a959ee52b8d5ba25894d52f0a3b9e (patch)
treec70a1d1c98be4af847531c14feda073a3032ad36 /include
parent6a7506afb1bde2933f4c2d00244b4ad0d15e135c (diff)
parentbb98807a9a02751ed2fcc98376f323ad93e15fa4 (diff)
downloadexternal_skia-c408f5a2507a959ee52b8d5ba25894d52f0a3b9e.zip
external_skia-c408f5a2507a959ee52b8d5ba25894d52f0a3b9e.tar.gz
external_skia-c408f5a2507a959ee52b8d5ba25894d52f0a3b9e.tar.bz2
Merge "Rename SkLargeBitmap to SkBitmapRegionDecoder (the previous renaming was reverted)." into gingerbread
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;
}