From 9ac68ee2594f28dfc1bd16a4bf004b1a4f6f228d Mon Sep 17 00:00:00 2001 From: mtklein Date: Fri, 20 Jun 2014 11:29:20 -0700 Subject: Move BenchTimer to tools as Timer This breaks a bunch of circular dependencies between tools and gm and bench. BUG=skia: Committed: https://skia.googlesource.com/skia/+/4ed75287aed6371c6e4a41ffcc78c8a49c9810ed CQ_EXTRA_TRYBOTS=tryserver.skia:Build-Mac10.7-Clang-Arm7-Debug-iOS-Trybot,Test-Ubuntu12-ShuttleA-GTX660-x86-Debug-Trybot R=tfarina@chromium.org, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/344213003 --- tools/DumpRecord.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/DumpRecord.cpp') diff --git a/tools/DumpRecord.cpp b/tools/DumpRecord.cpp index 2376fb9cf0..6e679a5430 100644 --- a/tools/DumpRecord.cpp +++ b/tools/DumpRecord.cpp @@ -10,8 +10,8 @@ #include "SkRecord.h" #include "SkRecordDraw.h" -#include "BenchTimer.h" #include "DumpRecord.h" +#include "Timer.h" namespace { @@ -33,7 +33,7 @@ public: template void operator()(const T& command) { - BenchTimer timer; + Timer timer; timer.start(); fDraw(command); timer.end(); -- cgit v1.2.3