diff --git a/bench/nanobench.cpp b/bench/nanobench.cpp index be151f61bf..b7603bf3bc 100644 --- a/bench/nanobench.cpp +++ b/bench/nanobench.cpp @@ -10,7 +10,6 @@ #include "Benchmark.h" #include "CrashHandler.h" #include "GMBench.h" -#include "LazyDecodeBitmap.h" #include "ProcStats.h" #include "ResultsWriter.h" #include "RecordingBench.h" @@ -488,7 +487,7 @@ public: return false; } - pic->reset(SkPicture::CreateFromStream(stream.get(), &sk_tools::LazyDecodeBitmap)); + pic->reset(SkPicture::CreateFromStream(stream.get())); if (pic->get() == NULL) { SkDebugf("Could not read %s as an SkPicture.\n", path); return false; diff --git a/gyp/bench.gyp b/gyp/bench.gyp index fa9e5e3a98..26849d511a 100644 --- a/gyp/bench.gyp +++ b/gyp/bench.gyp @@ -14,7 +14,6 @@ '../bench/RecordingBench.cpp', '../bench/SKPBench.cpp', '../bench/nanobench.cpp', - '../tools/LazyDecodeBitmap.cpp', ], 'includes': [ 'bench.gypi',