Chromium Code Reviews| Index: src/codec/SkCodec.cpp |
| diff --git a/src/codec/SkCodec.cpp b/src/codec/SkCodec.cpp |
| index d557087c01879f257fd64a2d8e7400cce920b765..eab85fcfd345991c543e04aadc2cf7c04b5e959d 100644 |
| --- a/src/codec/SkCodec.cpp |
| +++ b/src/codec/SkCodec.cpp |
| @@ -45,8 +45,8 @@ SkCodec* SkCodec::NewFromData(SkData* data) { |
| return NewFromStream(SkNEW_ARGS(SkMemoryStream, (data))); |
| } |
| -SkCodec::SkCodec(const SkImageInfo& info, SkStream* stream) |
| - : fInfo(info) |
| +SkCodec::SkCodec(const SkImageInfo& info, SkStream* stream) : INHERITED(info) |
|
scroggo
2015/03/19 13:27:47
nit: Shouldn't this go on the next line?
reed1
2015/03/19 15:20:46
Done.
|
| + , fInfo(info) |
|
scroggo
2015/03/19 13:27:47
fInfo is no longer needed by SkCodec. We can inste
reed1
2015/03/19 15:20:46
I thought I would remove the (many) duplicates in
|
| , fStream(stream) |
| , fNeedsRewind(false) |
| {} |