aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/LineBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/LineBench.cpp')
-rw-r--r--bench/LineBench.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/LineBench.cpp b/bench/LineBench.cpp
index dc57d9f165..bb6215b03f 100644
--- a/bench/LineBench.cpp
+++ b/bench/LineBench.cpp
@@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
-#include "SkBenchmark.h"
+#include "Benchmark.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
#include "SkColorPriv.h"
@@ -16,7 +16,7 @@
#include "SkTArray.h"
-class LineBench : public SkBenchmark {
+class LineBench : public Benchmark {
SkScalar fStrokeWidth;
bool fDoAA;
SkString fName;
@@ -56,7 +56,7 @@ protected:
}
private:
- typedef SkBenchmark INHERITED;
+ typedef Benchmark INHERITED;
};
DEF_BENCH(return new LineBench(0, false);)