Index: src/codec/SkBmpStandardCodec.cpp |
diff --git a/src/codec/SkBmpStandardCodec.cpp b/src/codec/SkBmpStandardCodec.cpp |
index a509c75b6da8206bc42726bcc53b3b1cf69d2bdc..80a989ae4d6ea4b2be98a1147a76ace2214d1c76 100644 |
--- a/src/codec/SkBmpStandardCodec.cpp |
+++ b/src/codec/SkBmpStandardCodec.cpp |
@@ -14,12 +14,12 @@ |
* Creates an instance of the decoder |
* Called only by NewFromStream |
*/ |
-SkBmpStandardCodec::SkBmpStandardCodec(int width, int height, const SkEncodedInfo& info, |
- SkStream* stream, uint16_t bitsPerPixel, uint32_t numColors, |
+SkBmpStandardCodec::SkBmpStandardCodec(const SkImageInfo& info, SkStream* stream, |
+ uint16_t bitsPerPixel, uint32_t numColors, |
uint32_t bytesPerColor, uint32_t offset, |
SkCodec::SkScanlineOrder rowOrder, |
bool isOpaque, bool inIco) |
- : INHERITED(width, height, info, stream, bitsPerPixel, rowOrder) |
+ : INHERITED(info, stream, bitsPerPixel, rowOrder) |
, fColorTable(nullptr) |
, fNumColors(numColors) |
, fBytesPerColor(bytesPerColor) |