| Index: src/codec/SkBmpStandardCodec.h
|
| diff --git a/src/codec/SkBmpStandardCodec.h b/src/codec/SkBmpStandardCodec.h
|
| index 7f23616a60b730c85f7cfde3df1a73e7ad67f956..d687eaad287a8c602219905c3810a9e3154f922a 100644
|
| --- a/src/codec/SkBmpStandardCodec.h
|
| +++ b/src/codec/SkBmpStandardCodec.h
|
| @@ -75,12 +75,7 @@
|
| int decodeRows(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes,
|
| const Options& opts) override;
|
|
|
| - /*
|
| - * @param stream This may be a pointer to the stream owned by the parent SkCodec
|
| - * or a sub-stream of the stream owned by the parent SkCodec.
|
| - * Either way, this stream is unowned.
|
| - */
|
| - void decodeIcoMask(SkStream* stream, const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes);
|
| + Result decodeIcoMask(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes);
|
|
|
| SkAutoTUnref<SkColorTable> fColorTable; // owned
|
| const uint32_t fNumColors;
|
| @@ -90,7 +85,6 @@
|
| const size_t fSrcRowBytes;
|
| SkAutoTDeleteArray<uint8_t> fSrcBuffer;
|
| const bool fInIco;
|
| - const size_t fAndMaskRowBytes; // only used for fInIco decodes
|
|
|
| typedef SkBmpCodec INHERITED;
|
| };
|
|
|