aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/DecodeBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/DecodeBench.cpp')
-rw-r--r--bench/DecodeBench.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/DecodeBench.cpp b/bench/DecodeBench.cpp
index 15a80b1b5c..a4717f8eb7 100644
--- a/bench/DecodeBench.cpp
+++ b/bench/DecodeBench.cpp
@@ -5,7 +5,7 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-#include "SkBenchmark.h"
+#include "Benchmark.h"
#include "SkBitmap.h"
#include "SkCommandLineFlags.h"
#include "SkImageDecoder.h"
@@ -15,7 +15,7 @@
DEFINE_string(decodeBenchFilename, "resources/CMYK.jpeg", "Path to image for DecodeBench.");
-class DecodeBench : public SkBenchmark {
+class DecodeBench : public Benchmark {
const SkColorType fPrefColorType;
SkString fName;
public:
@@ -42,7 +42,7 @@ protected:
}
private:
- typedef SkBenchmark INHERITED;
+ typedef Benchmark INHERITED;
};
DEF_BENCH( return new DecodeBench(kN32_SkColorType); )