| Index: tools/dump_record.cpp
|
| diff --git a/tools/dump_record.cpp b/tools/dump_record.cpp
|
| index 029638efb100d523ac8ab1c8916af25cccc8a2b6..96b893735b1a0f45de23414fb6d49af203849980 100644
|
| --- a/tools/dump_record.cpp
|
| +++ b/tools/dump_record.cpp
|
| @@ -6,7 +6,6 @@
|
| */
|
|
|
| #include "DumpRecord.h"
|
| -#include "LazyDecodeBitmap.h"
|
| #include "SkCommandLineFlags.h"
|
| #include "SkPicture.h"
|
| #include "SkPictureRecorder.h"
|
| @@ -50,8 +49,7 @@ int tool_main(int argc, char** argv) {
|
| SkDebugf("Could not read %s.\n", FLAGS_skps[i]);
|
| return 1;
|
| }
|
| - SkAutoTUnref<SkPicture> src(
|
| - SkPicture::CreateFromStream(stream, sk_tools::LazyDecodeBitmap));
|
| + SkAutoTUnref<SkPicture> src(SkPicture::CreateFromStream(stream));
|
| if (!src) {
|
| SkDebugf("Could not read %s as an SkPicture.\n", FLAGS_skps[i]);
|
| return 1;
|
|
|