Chromium Code Reviews| Index: include/codec/SkAndroidCodec.h |
| diff --git a/include/codec/SkAndroidCodec.h b/include/codec/SkAndroidCodec.h |
| index c5578d3964c7fae1513b3a3774a3b39528561e57..12e3be96eab26982b6ed89ce7a622243adf11154 100644 |
| --- a/include/codec/SkAndroidCodec.h |
| +++ b/include/codec/SkAndroidCodec.h |
| @@ -226,6 +226,10 @@ public: |
| */ |
| SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes); |
|
msarett
2016/01/29 15:16:39
Thoughts on also naming this getPixels() (not in t
scroggo
2016/01/29 19:50:33
I'm in favor. As I understood it, you were concern
|
| + SkCodec::Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) { |
| + return this->getAndroidPixels(info, pixels, rowBytes); |
| + } |
| + |
| protected: |
| SkAndroidCodec(SkCodec*); |