Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2664)

Unified Diff: bench/HairlinePathBench.cpp

Issue 347823004: Remove Sk prefix from some bench classes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: SkGMBench -> GMBench Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bench/GradientBench.cpp ('k') | bench/ImageCacheBench.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/HairlinePathBench.cpp
diff --git a/bench/HairlinePathBench.cpp b/bench/HairlinePathBench.cpp
index 11faff57f84f6bae89624e1bd23febe9f68e6de8..e7e2b428e8f28271dd170994e49e45cdb2e6657a 100644
--- a/bench/HairlinePathBench.cpp
+++ b/bench/HairlinePathBench.cpp
@@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
-#include "SkBenchmark.h"
+#include "Benchmark.h"
#include "SkCanvas.h"
#include "SkPaint.h"
#include "SkRandom.h"
@@ -13,8 +13,8 @@
#include "SkString.h"
#if SK_SUPPORT_GPU
-#include "GrTest.h"
#include "GrDrawTargetCaps.h"
+#include "GrTest.h"
#endif
enum Flags {
@@ -36,7 +36,7 @@ static const int points[] = {
static const int kMaxPathSize = 10;
-class HairlinePathBench : public SkBenchmark {
+class HairlinePathBench : public Benchmark {
public:
HairlinePathBench(Flags flags) : fFlags(flags) {
fPaint.setStyle(SkPaint::kStroke_Style);
@@ -78,7 +78,7 @@ private:
SkPaint fPaint;
SkString fName;
Flags fFlags;
- typedef SkBenchmark INHERITED;
+ typedef Benchmark INHERITED;
};
class LinePathBench : public HairlinePathBench {
« no previous file with comments | « bench/GradientBench.cpp ('k') | bench/ImageCacheBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698