Index: include/core/SkImageGenerator.h |
diff --git a/include/core/SkImageGenerator.h b/include/core/SkImageGenerator.h |
index 220973a0f852fae56fe93d9d70a88edc143ae2ea..f399ab538e9ea05d125ab1b21ec387640d69ffc3 100644 |
--- a/include/core/SkImageGenerator.h |
+++ b/include/core/SkImageGenerator.h |
@@ -8,7 +8,6 @@ |
#ifndef SkImageGenerator_DEFINED |
#define SkImageGenerator_DEFINED |
-#include "SkDiscardableMemory.h" |
#include "SkImageInfo.h" |
class SkBitmap; |
@@ -31,15 +30,9 @@ class SkImageGenerator; |
* @param destination Upon success, this bitmap will be |
* configured and have a pixelref installed. |
* |
- * @param factory If not NULL, this object will be used as a |
- * source of discardable memory when decoding. If NULL, then |
- * SkDiscardableMemory::Create() will be called. |
- * |
* @return true iff successful. |
*/ |
-SK_API bool SkInstallDiscardablePixelRef(SkImageGenerator* generator, |
- SkBitmap* destination, |
- SkDiscardableMemory::Factory* factory = NULL); |
+SK_API bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap* destination); |
/** |