| Index: bench/LineBench.cpp
|
| diff --git a/bench/LineBench.cpp b/bench/LineBench.cpp
|
| index dc57d9f16519fdba47803132e031eccae163da8e..bb6215b03fda7ab4f67bbd5ae93e2733b5727e50 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);)
|
|
|