aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-07 14:00:31 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-07 14:00:31 +0000
commit622eda7373796084c554bcb7bbfa38ffb6cbd199 (patch)
treeb5b01c26e9a734b535faf67996a5a8d34fd82ee5 /include
parentb7fedac2d1e4c4d1d74056afd2d50587d5ea61ed (diff)
Remove deprecated function.
We have switched Android to call decodeSubset, so this function is no longer necessary. R=reed@google.com Author: scroggo@google.com Review URL: https://codereview.chromium.org/225413013 git-svn-id: http://skia.googlecode.com/svn/trunk@14072 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/core/SkImageDecoder.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/core/SkImageDecoder.h b/include/core/SkImageDecoder.h
index bec40631e7..2300f6d27d 100644
--- a/include/core/SkImageDecoder.h
+++ b/include/core/SkImageDecoder.h
@@ -288,11 +288,6 @@ public:
*/
bool decodeSubset(SkBitmap* bm, const SkIRect& subset, SkBitmap::Config pref);
- SK_ATTR_DEPRECATED("use decodeSubset() instead")
- bool decodeRegion(SkBitmap* bitmap, const SkIRect& rect, SkBitmap::Config pref) {
- return this->decodeSubset(bitmap, rect, pref);
- }
-
/** Given a stream, this will try to find an appropriate decoder object.
If none is found, the method returns NULL.
*/