Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1018)

Unified Diff: include/codec/SkCodec.h

Issue 947283002: Bmp Image Decoding (Closed) Base URL: https://skia.googlesource.com/skia.git@decode-leon-3
Patch Set: Tested bmp and swizzler design Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: include/codec/SkCodec.h
diff --git a/include/codec/SkCodec.h b/include/codec/SkCodec.h
index c431911f5c7f077a9b6d7a72b9feca75a1ef1c1c..2dd1963a63a7e4431c6abeab724a95b1bf119235 100644
--- a/include/codec/SkCodec.h
+++ b/include/codec/SkCodec.h
@@ -68,9 +68,10 @@ protected:
// By default, scaling is not supported.
return fInfo.dimensions();
}
+
+ SkAutoTDelete<SkStream> fStream;
msarett 2015/02/24 21:56:06 I needed to make this field protected to use in Sk
scroggo 2015/02/25 17:22:41 I'd prefer a protected accessor: protected: SkS
private:
const SkImageInfo fInfo;
- SkAutoTDelete<SkStream> fStream;
};
#endif // SkCodec_DEFINED
« no previous file with comments | « gyp/codec.gyp ('k') | src/codec/SkCodec.cpp » ('j') | src/codec/SkCodec_libbmp.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698