| Index: tests/CodecTest.cpp
|
| diff --git a/tests/CodecTest.cpp b/tests/CodecTest.cpp
|
| index 7e1b594791f5315e8c622fedb815e3c4a463372d..a5df7e3b50a9e00291966f1a578b637bef7f7cce 100644
|
| --- a/tests/CodecTest.cpp
|
| +++ b/tests/CodecTest.cpp
|
| @@ -823,8 +823,8 @@ DEF_TEST(Codec_pngChunkReader, r) {
|
| ChunkReader chunkReader(r);
|
|
|
| // Now read the file with SkCodec.
|
| - SkAutoTUnref<SkData> data(wStream.copyToData());
|
| - SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(data, &chunkReader));
|
| + sk_sp<SkData> data(wStream.copyToData());
|
| + SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(data.get(), &chunkReader));
|
| REPORTER_ASSERT(r, codec);
|
| if (!codec) {
|
| return;
|
|
|