aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/PerlinNoiseBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/PerlinNoiseBench.cpp')
-rw-r--r--bench/PerlinNoiseBench.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/PerlinNoiseBench.cpp b/bench/PerlinNoiseBench.cpp
index ff0baf35fc..560628f4fd 100644
--- a/bench/PerlinNoiseBench.cpp
+++ b/bench/PerlinNoiseBench.cpp
@@ -4,11 +4,11 @@
* 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 "SkCanvas.h"
#include "SkPerlinNoiseShader.h"
-class PerlinNoiseBench : public SkBenchmark {
+class PerlinNoiseBench : public Benchmark {
SkISize fSize;
public:
@@ -54,7 +54,7 @@ private:
}
}
- typedef SkBenchmark INHERITED;
+ typedef Benchmark INHERITED;
};
///////////////////////////////////////////////////////////////////////////////