Index: src/codec/SkIcoCodec.h |
diff --git a/src/codec/SkIcoCodec.h b/src/codec/SkIcoCodec.h |
index a227d8c67100691dc00ec78ac0121e33c1d017d1..8c56aee4c6ca135da33d0aa7824db1fab863bd84 100644 |
--- a/src/codec/SkIcoCodec.h |
+++ b/src/codec/SkIcoCodec.h |
@@ -54,11 +54,6 @@ private: |
bool onSkipScanlines(int count) override; |
- Result onStartIncrementalDecode(const SkImageInfo& dstInfo, void* pixels, size_t rowBytes, |
- const SkCodec::Options&, SkPMColor*, int*) override; |
- |
- Result onIncrementalDecode(int* rowsDecoded) override; |
- |
SkSampler* getSampler(bool createIfNecessary) override; |
/* |
@@ -89,13 +84,5 @@ private: |
// SkAutoTDelete. It will be deleted by the destructor of fEmbeddedCodecs. |
SkCodec* fCurrScanlineCodec; |
- // Only used by incremental decoder. onStartIncrementalDecode() will set |
- // fCurrIncrementalCodec to one of the fEmbeddedCodecs, if it can find a |
- // codec of the appropriate size. We will use fCurrIncrementalCodec for |
- // subsequent calls to incrementalDecode(). |
- // fCurrIncrementalCodec is owned by this class, but should not be an |
- // SkAutoTDelete. It will be deleted by the destructor of fEmbeddedCodecs. |
- SkCodec* fCurrIncrementalCodec; |
- |
typedef SkCodec INHERITED; |
}; |