aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWei-Ta Chen <weita@google.com>2010-09-03 18:51:09 +0800
committerWei-Ta Chen <weita@google.com>2010-09-20 18:00:00 +0800
commitbb98807a9a02751ed2fcc98376f323ad93e15fa4 (patch)
tree59b1da786e7268eb7718b272dd21f92e9f82ee3d /include
parent3a1cc9700bf928ed3b1e05c7edc543124440c54c (diff)
downloadexternal_skia-bb98807a9a02751ed2fcc98376f323ad93e15fa4.zip
external_skia-bb98807a9a02751ed2fcc98376f323ad93e15fa4.tar.gz
external_skia-bb98807a9a02751ed2fcc98376f323ad93e15fa4.tar.bz2
Rename SkLargeBitmap to SkBitmapRegionDecoder (the previous renaming was reverted).
The change is identical to https://android-git.corp.google.com/g/#change,64714 . Change-Id: If0136fcc96bcdab323607b701e2ef69ddf42f63d
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;
}